[Scummvm-cvs-logs] SF.net SVN: scummvm: [27965] scummvm/branches/branch-0-10-0/engines/kyra/ screen.cpp
lordhoto at users.sourceforge.net
lordhoto at users.sourceforge.net
Sun Jul 8 15:01:00 CEST 2007
Revision: 27965
http://scummvm.svn.sourceforge.net/scummvm/?rev=27965&view=rev
Author: lordhoto
Date: 2007-07-08 06:01:00 -0700 (Sun, 08 Jul 2007)
Log Message:
-----------
Fix for disappearing text in FM-Towns end sequence. (backport)
Modified Paths:
--------------
scummvm/branches/branch-0-10-0/engines/kyra/screen.cpp
Modified: scummvm/branches/branch-0-10-0/engines/kyra/screen.cpp
===================================================================
--- scummvm/branches/branch-0-10-0/engines/kyra/screen.cpp 2007-07-08 12:59:00 UTC (rev 27964)
+++ scummvm/branches/branch-0-10-0/engines/kyra/screen.cpp 2007-07-08 13:01:00 UTC (rev 27965)
@@ -477,7 +477,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