hedgewars/uDebug.pas
branchui-scaling
changeset 15283 c4fd2813b127
parent 13498 4f00b08d6f1e
child 15900 128ace913837
--- a/hedgewars/uDebug.pas	Wed May 16 18:22:28 2018 +0200
+++ b/hedgewars/uDebug.pas	Wed Jul 31 23:14:27 2019 +0200
@@ -56,7 +56,7 @@
     if not Assert then
         begin
         lastConsoleLine:= Msg;
-        OutError(Msg, false);
+        OutError(Msg, isFatal);
         end;
 
     allOK:= allOK and (Assert or (not isFatal));
@@ -69,7 +69,7 @@
     if not Assert then
     begin
         s:= SDL_GetError();
-        OutError(Msg + ': ' + s, false)
+        OutError(Msg + ': ' + s, isFatal)
     end;
 
     allOK:= allOK and (Assert or (not isFatal));