mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
GRAPHICS: Fix glyph offsets for PC98 glyphs *9e
This commit is contained in:
parent
455e6d1779
commit
2366bff928
@ -554,9 +554,9 @@ const uint8 *FontPC98::getCharData(uint16 ch) const {
|
||||
|
||||
if (lo >= 0x3f && lo <= 0x7e)
|
||||
glyph += lo - 0x3f;
|
||||
else if (lo >= 0x80 && lo <= 0x9d)
|
||||
else if (lo >= 0x80 && lo <= 0x9e)
|
||||
glyph += lo - 0x80 + 64;
|
||||
else if (lo >= 0x9e && lo <= 0xfc)
|
||||
else if (lo >= 0x9f && lo <= 0xfc)
|
||||
glyph += lo - 0x9e + 96;
|
||||
else
|
||||
return nullptr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user