Ver código fonte

Endlosschleife in bediungung mit wait anweisung behoben

Kolja Strohm 5 anos atrás
pai
commit
8f64530bdb
1 arquivos alterados com 2 adições e 1 exclusões
  1. 2 1
      StickmanWorldOnline/Trigger.cpp

+ 2 - 1
StickmanWorldOnline/Trigger.cpp

@@ -193,7 +193,8 @@ bool Bedingung::check( Spiel *zSpiel, Ereignis *zEreignis )
     double wait;
     ProgramCounter c;
     LocalMemory m;
-    while( !expression->runNext( zSpiel, zEreignis, &m, &c, wait ) );
+    while( !expression->runNext( zSpiel, zEreignis, &m, &c, wait ) )
+        wait = 0;
     Variable *var = m.zVariable( "__return__" );
     return isTrue( var );
 }