diff options
| -rw-r--r-- | engines/agos/charset.cpp | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/engines/agos/charset.cpp b/engines/agos/charset.cpp index 057c8669be..c3c7ece8ce 100644 --- a/engines/agos/charset.cpp +++ b/engines/agos/charset.cpp @@ -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++; | 
