Add specific warning message when creating differencing VHD. Patch from shermanp.

This commit is contained in:
SarahW 2020-11-18 20:43:07 +00:00
commit e15f66b349

View file

@ -1842,9 +1842,13 @@ static int hdnew_dlgproc(void* hdlg, int message, INT_PARAM wParam, LONG_PARAM l
return TRUE;
}
}
wx_messagebox(hdlg, "Differencing VHD image created.\n\n"
"WARNING: Do not open or modify the parent image(s) while this file exists.", "PCem", WX_MB_OK);
}
if (hd_format != 3)
{
wx_messagebox(hdlg, "Drive created, remember to partition and format the new drive.", "PCem", WX_MB_OK);
}
wx_messagebox(hdlg, "Drive created, remember to partition and format the new drive.", "PCem", WX_MB_OK);
wx_enddialog(hdlg, 1);
return TRUE;