- did not save the latest changes.

This commit is contained in:
Christoph Oelckers 2019-02-21 00:23:49 +01:00
parent 8bdbd2e915
commit 7ea2f135df
1 changed files with 2 additions and 2 deletions

View File

@ -341,7 +341,7 @@ class StatusScreen abstract play version("2.5")
{
x = drawNum(fnt, x, y, b, 2, false, color);
x -= fnt.StringWidth("/");
screen.DrawText (IntermissionFont, color, x, y, "/", nomove? DTA_CleanNoMove : DTA_Clean, true);
screen.DrawText (fnt, color, x, y, "/", nomove? DTA_CleanNoMove : DTA_Clean, true);
}
drawNum (fnt, x, y, p, -1, false, color);
}
@ -383,7 +383,7 @@ class StatusScreen abstract play version("2.5")
void drawTime (int x, int y, int t, bool no_sucks=false)
{
drawTimeFont(printFont, x, y, t, Font.CR_UNTRANSLATED);
drawTimeFont(IntermissionFont, x, y, t, Font.CR_UNTRANSLATED);
}