diff options
author | Bastien Bouclet | 2019-04-27 08:00:37 +0200 |
---|---|---|
committer | Bastien Bouclet | 2019-05-05 08:52:12 +0200 |
commit | a5d93d933ab65d5a7efcc88926ce116618f06fcd (patch) | |
tree | 81be4d4692ae5c2a266089196a2884107d8d1b06 /gui/console.h | |
parent | 2a38562d4bc968bb9d32a9bbe5e57f9d37f88a60 (diff) | |
download | scummvm-rg350-a5d93d933ab65d5a7efcc88926ce116618f06fcd.tar.gz scummvm-rg350-a5d93d933ab65d5a7efcc88926ce116618f06fcd.tar.bz2 scummvm-rg350-a5d93d933ab65d5a7efcc88926ce116618f06fcd.zip |
GUI: Use a truetype font for the debug console
Diffstat (limited to 'gui/console.h')
-rw-r--r-- | gui/console.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/console.h b/gui/console.h index 2445005afc..8a9659c1e9 100644 --- a/gui/console.h +++ b/gui/console.h @@ -167,7 +167,7 @@ protected: int pos2line(int pos) { return (pos - (_scrollLine - _linesPerPage + 1) * kCharsPerLine) / kCharsPerLine; } - void drawLine(int line, bool restoreBg = true); + void drawLine(int line); void drawCaret(bool erase); void printCharIntern(int c); void insertIntoPrompt(const char *str); |