[Scummvm-cvs-logs] SF.net SVN: scummvm:[33546] scummvm/trunk/engines/scumm/gfx.cpp

sev at users.sourceforge.net sev at users.sourceforge.net
Sat Aug 2 23:57:37 CEST 2008


Revision: 33546
          http://scummvm.svn.sourceforge.net/scummvm/?rev=33546&view=rev
Author:   sev
Date:     2008-08-02 21:57:35 +0000 (Sat, 02 Aug 2008)

Log Message:
-----------
Fix bug #1879606: "MANIACNES: Crash when game ends"

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/gfx.cpp

Modified: scummvm/trunk/engines/scumm/gfx.cpp
===================================================================
--- scummvm/trunk/engines/scumm/gfx.cpp	2008-08-02 21:37:31 UTC (rev 33545)
+++ scummvm/trunk/engines/scumm/gfx.cpp	2008-08-02 21:57:35 UTC (rev 33546)
@@ -669,7 +669,7 @@
 				x += 16;
 				while (x + width >= _screenWidth)
 					width -= 16;
-				if (width < 0)
+				if (width <= 0)
 					return;
 			}
 


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