mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-04 09:18:38 +00:00
Maybe this change will cure one of erik's two console bug reports (namely #941811). Maybe not
svn-id: r13794
This commit is contained in:
parent
71df4c5e72
commit
83cd000207
@ -112,8 +112,12 @@ void ConsoleDialog::drawDialog() {
|
||||
for (int line = 0; line < _linesPerPage; line++) {
|
||||
int x = _x + 1;
|
||||
for (int column = 0; column < _lineWidth; column++) {
|
||||
#if 0
|
||||
int l = (start + line) % _linesInBuffer;
|
||||
byte c = buffer(l * _lineWidth + column);
|
||||
#else
|
||||
byte c = buffer((start + line) * _lineWidth + column);
|
||||
#endif
|
||||
g_gui.drawChar(c, x, y, g_gui._textcolor);
|
||||
x += kCharWidth;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user