[Scummvm-cvs-logs] SF.net SVN: scummvm:[46339] scummvm/trunk/engines/teenagent/surface.cpp
megath at users.sourceforge.net
megath at users.sourceforge.net
Sat Dec 12 13:47:03 CET 2009
Revision: 46339
http://scummvm.svn.sourceforge.net/scummvm/?rev=46339&view=rev
Author: megath
Date: 2009-12-12 12:47:03 +0000 (Sat, 12 Dec 2009)
Log Message:
-----------
fixed typo in checking src rect height
Modified Paths:
--------------
scummvm/trunk/engines/teenagent/surface.cpp
Modified: scummvm/trunk/engines/teenagent/surface.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/surface.cpp 2009-12-12 11:59:38 UTC (rev 46338)
+++ scummvm/trunk/engines/teenagent/surface.cpp 2009-12-12 12:47:03 UTC (rev 46339)
@@ -67,7 +67,7 @@
src_rect = Common::Rect(0, 0, w, h);
} else if (src_rect.right > w)
src_rect.right = w;
- else if (src_rect.bottom < h)
+ else if (src_rect.bottom > h)
src_rect.bottom = h;
if (zoom == 256) {
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