[Scummvm-cvs-logs] SF.net SVN: scummvm:[36162] scummvm/branches/branch-0-13-0/engines/kyra

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Sat Jan 31 13:02:36 CET 2009


Revision: 36162
          http://scummvm.svn.sourceforge.net/scummvm/?rev=36162&view=rev
Author:   lordhoto
Date:     2009-01-31 12:02:36 +0000 (Sat, 31 Jan 2009)

Log Message:
-----------
Fix for bug #2551436 "KYRA2: ScummVM quits after death". (backport of r36161)

Modified Paths:
--------------
    scummvm/branches/branch-0-13-0/engines/kyra/kyra_hof.cpp
    scummvm/branches/branch-0-13-0/engines/kyra/kyra_mr.cpp

Modified: scummvm/branches/branch-0-13-0/engines/kyra/kyra_hof.cpp
===================================================================
--- scummvm/branches/branch-0-13-0/engines/kyra/kyra_hof.cpp	2009-01-31 12:00:20 UTC (rev 36161)
+++ scummvm/branches/branch-0-13-0/engines/kyra/kyra_hof.cpp	2009-01-31 12:02:36 UTC (rev 36162)
@@ -465,7 +465,7 @@
 			_gui->optionsButton(0);
 			_deathHandler = -1;
 
-			if (!_runFlag || !shouldQuit())
+			if (!_runFlag || shouldQuit())
 				break;
 		}
 

Modified: scummvm/branches/branch-0-13-0/engines/kyra/kyra_mr.cpp
===================================================================
--- scummvm/branches/branch-0-13-0/engines/kyra/kyra_mr.cpp	2009-01-31 12:00:20 UTC (rev 36161)
+++ scummvm/branches/branch-0-13-0/engines/kyra/kyra_mr.cpp	2009-01-31 12:02:36 UTC (rev 36162)
@@ -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