mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 01:38:36 +00:00
Fix removal of SJIS characters in LoL PC98 menu.
svn-id: r44213
This commit is contained in:
parent
156f9d4899
commit
7c2e3aaa44
@ -3011,6 +3011,8 @@ byte *Screen::getOverlayPtr(int page) {
|
||||
} 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;
|
||||
|
@ -274,7 +274,7 @@ public:
|
||||
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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user