diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gfx.cpp b/src/gfx.cpp index 062ef34f1..042148b8b 100644 --- a/src/gfx.cpp +++ b/src/gfx.cpp @@ -557,7 +557,7 @@ static int DrawString(int left, int right, int top, char *str, const char *last, ReallyDoDrawString(to_draw, left, top, colour, !truncate); if (underline) { - GfxFillRect(left, top + 10, right, top + 10, _string_colourremap[1]); + GfxFillRect(left, top + FONT_HEIGHT_NORMAL, right, top + FONT_HEIGHT_NORMAL, _string_colourremap[1]); } } |