mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 12:39:56 +00:00
The 'i' and 'l' charactors only have a shorter width in Simon the Sorcerer 1/2.
svn-id: r26958
This commit is contained in:
parent
6ce23ced48
commit
4f76f95942
@ -660,9 +660,10 @@ void AGOSEngine::windowPutChar(WindowBlock *window, byte c, byte b) {
|
||||
|
||||
window->textLength++;
|
||||
window->textColumnOffset += 6;
|
||||
if (c == 'i' || c == 'l')
|
||||
window->textColumnOffset -= 2;
|
||||
|
||||
if (getGameType() == GType_SIMON1 || getGameType() == GType_SIMON2) {
|
||||
if (c == 'i' || c == 'l')
|
||||
window->textColumnOffset -= 2;
|
||||
}
|
||||
if (window->textColumnOffset >= 8) {
|
||||
window->textColumnOffset -= 8;
|
||||
window->textColumn++;
|
||||
|
Loading…
Reference in New Issue
Block a user