mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-07 10:48:43 +00:00
Fix position of name text in Hebrew versions.
svn-id: r27234
This commit is contained in:
parent
910ff9289b
commit
80bf4126a1
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user