1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 06:44:38 +01:00

Merge pull request #13523 from IntelOrca/fix/13517-date-format

Fix #13517: Bad formatting of dates
This commit is contained in:
Tulio Leao
2020-12-06 10:17:59 -03:00
committed by GitHub
2 changed files with 20 additions and 2 deletions

View File

@@ -313,7 +313,7 @@ void InGameConsole::Draw(rct_drawpixelinfo* dpi) const
{
const size_t index = i + _consoleScrollPos;
lineBuffer = colourFormatStr + _consoleLines[index];
gfx_draw_string_no_formatting(dpi, lineBuffer.c_str(), textColour, screenCoords);
gfx_draw_string(dpi, lineBuffer.c_str(), textColour, screenCoords);
screenCoords.y += lineHeight;
}