Fix position of name text in Hebrew versions.

svn-id: r27234
This commit is contained in:
Travis Howell 2007-06-09 08:58:18 +00:00
parent 910ff9289b
commit 80bf4126a1

View File

@ -296,6 +296,10 @@ void AGOSEngine::showActionString(const byte *string) {
window->textColumn = x / 8;
window->textColumnOffset = x & 7;
if (_language == Common::HB_ISR && window->textColumnOffset != 0) {
window->textColumnOffset = 8 - window->textColumnOffset;
window->textColumn++;
}
for (; *string; string++)
windowPutChar(window, *string);