[Scummvm-cvs-logs] SF.net SVN: scummvm:[44213] scummvm/trunk/engines/kyra
lordhoto at users.sourceforge.net
lordhoto at users.sourceforge.net
Sun Sep 20 17:01:52 CEST 2009
Revision: 44213
http://scummvm.svn.sourceforge.net/scummvm/?rev=44213&view=rev
Author: lordhoto
Date: 2009-09-20 15:01:50 +0000 (Sun, 20 Sep 2009)
Log Message:
-----------
Fix removal of SJIS characters in LoL PC98 menu.
Modified Paths:
--------------
scummvm/trunk/engines/kyra/screen.cpp
scummvm/trunk/engines/kyra/screen.h
Modified: scummvm/trunk/engines/kyra/screen.cpp
===================================================================
--- scummvm/trunk/engines/kyra/screen.cpp 2009-09-20 14:44:15 UTC (rev 44212)
+++ scummvm/trunk/engines/kyra/screen.cpp 2009-09-20 15:01:50 UTC (rev 44213)
@@ -3011,6 +3011,8 @@
} else if (_vm->gameFlags().gameID == GI_LOL) {
if (page == 4 || page == 5)
return _sjisOverlayPtrs[3];
+ if (page == 6 || page == 7)
+ return _sjisOverlayPtrs[4];
}
return 0;
Modified: scummvm/trunk/engines/kyra/screen.h
===================================================================
--- scummvm/trunk/engines/kyra/screen.h 2009-09-20 14:44:15 UTC (rev 44212)
+++ scummvm/trunk/engines/kyra/screen.h 2009-09-20 15:01:50 UTC (rev 44213)
@@ -274,7 +274,7 @@
SCREEN_PAGE_SIZE = 320 * 200 + 1024,
SCREEN_OVL_SJIS_SIZE = 640 * 400,
SCREEN_PAGE_NUM = 16,
- SCREEN_OVLS_NUM = 4
+ SCREEN_OVLS_NUM = 5
};
enum CopyRegionFlags {
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