DEADSOFTWARE

test: fix error message on launch fail
authorDeaDDooMER <deaddoomer@deadsoftware.ru>
Mon, 22 May 2023 17:48:31 +0000 (20:48 +0300)
committerDeaDDooMER <deaddoomer@deadsoftware.ru>
Mon, 22 May 2023 17:48:31 +0000 (20:48 +0300)
src/editor/f_main.pas

index 8d11a3b7cb75b8d8b3c70f8be2d690b912c97fcc..be9dee3915e746363fd9c91ff7fd9b22abb05ab5 100644 (file)
@@ -4311,6 +4311,8 @@ begin
   begin
     if MapTestProcess.Running = false then
     begin
+      if MapTestProcess.ExitCode <> 0 then
+        Application.MessageBox(PChar(_lc[I_MSG_EXEC_ERROR]), 'FIXME', MB_OK or MB_ICONERROR);
       SysUtils.DeleteFile(MapTestFile);
       MapTestFile := '';
       FreeAndNil(MapTestProcess);
@@ -6834,7 +6836,7 @@ begin
   end
   else
   begin
-    MessageBox(0, 'FIXME', PChar(_lc[I_MSG_EXEC_ERROR]), MB_OK or MB_ICONERROR);
+    Application.MessageBox(PChar(_lc[I_MSG_EXEC_ERROR]), 'FIXME', MB_OK or MB_ICONERROR);
     SysUtils.DeleteFile(newWAD);
     proc.Free();
   end;