mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-30 15:31:59 +00:00
Some basic suport for reversed text for hebrew version.
svn-id: r9278
This commit is contained in:
parent
45ebcdbde1
commit
bbbebd9d14
@ -226,7 +226,10 @@ void SimonEngine::video_putchar(FillOrCopyStruct *fcs, byte c) {
|
||||
fcs->textRow--;
|
||||
}
|
||||
|
||||
video_putchar_drawchar(fcs, fcs->textColumn + fcs->x, fcs->textRow * 8 + fcs->y, c);
|
||||
if (_language == 20)
|
||||
video_putchar_drawchar(fcs, fcs->width + fcs->x - fcs->textColumn, fcs->textRow * 8 + fcs->y, c);
|
||||
else
|
||||
video_putchar_drawchar(fcs, fcs->textColumn + fcs->x, fcs->textRow * 8 + fcs->y, c);
|
||||
|
||||
fcs->textLength++;
|
||||
fcs->textColumnOffset += 6;
|
||||
|
Loading…
x
Reference in New Issue
Block a user