fixed formatting of DDE else to prevent confusion

This commit is contained in:
mpohoreski 2008-09-04 16:43:11 +00:00
parent 036902bce0
commit 62db996477

View File

@ -627,6 +627,7 @@ LRESULT CALLBACK FrameWndProc (
case WM_DDE_EXECUTE: {
LPTSTR filename = (LPTSTR)GlobalLock((HGLOBAL)lparam);
//MessageBox( NULL, filename, "DDE Exec", MB_OK );
int error = DiskInsert(0,filename,0,0);
if (!error) {
if (!fullscreen)
@ -635,7 +636,9 @@ LRESULT CALLBACK FrameWndProc (
ProcessButtonClick(BTN_RUN);
}
else
{
DiskNotifyInvalidImage(filename,error);
}
GlobalUnlock((HGLOBAL)lparam);
break;
}