[Scummvm-cvs-logs] SF.net SVN: scummvm:[36161] scummvm/trunk/engines/kyra
lordhoto at users.sourceforge.net
lordhoto at users.sourceforge.net
Sat Jan 31 13:00:21 CET 2009
Revision: 36161
http://scummvm.svn.sourceforge.net/scummvm/?rev=36161&view=rev
Author: lordhoto
Date: 2009-01-31 12:00:20 +0000 (Sat, 31 Jan 2009)
Log Message:
-----------
Fix for bug #2551436 "KYRA2: ScummVM quits after death".
Modified Paths:
--------------
scummvm/trunk/engines/kyra/kyra_hof.cpp
scummvm/trunk/engines/kyra/kyra_mr.cpp
Modified: scummvm/trunk/engines/kyra/kyra_hof.cpp
===================================================================
--- scummvm/trunk/engines/kyra/kyra_hof.cpp 2009-01-31 09:44:27 UTC (rev 36160)
+++ scummvm/trunk/engines/kyra/kyra_hof.cpp 2009-01-31 12:00:20 UTC (rev 36161)
@@ -465,7 +465,7 @@
_gui->optionsButton(0);
_deathHandler = -1;
- if (!_runFlag || !shouldQuit())
+ if (!_runFlag || shouldQuit())
break;
}
Modified: scummvm/trunk/engines/kyra/kyra_mr.cpp
===================================================================
--- scummvm/trunk/engines/kyra/kyra_mr.cpp 2009-01-31 09:44:27 UTC (rev 36160)
+++ scummvm/trunk/engines/kyra/kyra_mr.cpp 2009-01-31 12:00:20 UTC (rev 36161)
@@ -1012,7 +1012,7 @@
_gui->optionsButton(0);
_deathHandler = -1;
- if (shouldQuit())
+ if (!_runFlag || shouldQuit())
break;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list