mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 07:39:08 +00:00
MORTEVIELLE: Fix character indexing in writeg()
This commit is contained in:
parent
de974c908f
commit
2e95ac70b2
@ -81,7 +81,7 @@ void writeg(Common::String l, int c)
|
||||
xo = xo + 1;
|
||||
yo = yo + 1;
|
||||
for (x = 1; x <= (int)l.size(); x ++) {
|
||||
affcar(gd, xo, yo, cecr, ord(l[x]));
|
||||
affcar(gd, xo, yo, cecr, ord(l[x - 1]));
|
||||
xo = xo + i;
|
||||
}
|
||||
show_mouse();
|
||||
|
Loading…
Reference in New Issue
Block a user