hedgewars/uFLRunQueue.pas
branchqmlfrontend
changeset 11460 9f2fb0031ef0
parent 11459 30397f91571c
child 12858 0c6fb706f747
--- a/hedgewars/uFLRunQueue.pas	Thu Dec 17 00:51:20 2015 +0300
+++ b/hedgewars/uFLRunQueue.pas	Sun Dec 20 12:45:49 2015 +0300
@@ -14,7 +14,6 @@
 begin
     if runQueue <> nil then
     begin
-    writeln('RUNNING ', runQueue^.gameType);
         if runQueue^.gameType = gtPreview then
             sendUI(mtRenderingPreview, nil, 0);
 
@@ -35,7 +34,6 @@
 var pConfig, t, tt: PGameConfig;
     i: Longword;
 begin
-    writeln('QUEUE EXECUTION ', config.gameType);
     new(pConfig);
     pConfig^:= config;
 
@@ -86,12 +84,9 @@
 begin
     case TFLIBEvent(p^) of
         flibGameFinished: begin
-                cleanupConfig;
-                nextRun
-            end;
-        flibRunNetGame: begin
-                runNetGame
-            end;
+            cleanupConfig;
+            nextRun
+        end;
     end;
 end;