[Scummvm-cvs-logs] SF.net SVN: scummvm: [27964] scummvm/trunk/engines/kyra/screen.cpp
lordhoto at users.sourceforge.net
lordhoto at users.sourceforge.net
Sun Jul 8 14:59:00 CEST 2007
Revision: 27964
http://scummvm.svn.sourceforge.net/scummvm/?rev=27964&view=rev
Author: lordhoto
Date: 2007-07-08 05:59:00 -0700 (Sun, 08 Jul 2007)
Log Message:
-----------
Fix for disappearing text in FM-Towns end sequence.
Modified Paths:
--------------
scummvm/trunk/engines/kyra/screen.cpp
Modified: scummvm/trunk/engines/kyra/screen.cpp
===================================================================
--- scummvm/trunk/engines/kyra/screen.cpp 2007-07-08 12:50:24 UTC (rev 27963)
+++ scummvm/trunk/engines/kyra/screen.cpp 2007-07-08 12:59:00 UTC (rev 27964)
@@ -504,7 +504,12 @@
dstPage += SCREEN_W;
}
addDirtyRect(0, y, SCREEN_W, h);
- clearOverlayRect(0, 0, y, SCREEN_W, h);
+ // This would remove the text in the end sequence of
+ // the FM-Towns version.
+ // Since this method is just used for the Seqplayer
+ // this shouldn't be a problem anywhere else, so it's
+ // safe to disable the call here.
+ //clearOverlayRect(0, 0, y, SCREEN_W, h);
}
void Screen::copyRegion(int x1, int y1, int x2, int y2, int w, int h, int srcPage, int dstPage, int flags) {
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