mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 01:29:43 +01:00
Fix visual clash between timer and trophy text
Trophy text can overlap with the timer. How bad it is depends on the localization but in English some text definitely overlaps. Simple fix is to disable rendering the timer if we are rendering any trophy text.
This commit is contained in:
parent
b3b001c2a8
commit
9676bf0006
1 changed files with 1 additions and 0 deletions
|
@ -2325,6 +2325,7 @@ void gamerender(void)
|
|||
&& game.showingametimer
|
||||
&& !roomname_translator::enabled
|
||||
&& (!game.swnmode || game.swngame != SWN_START_GRAVITRON_STEP_3)
|
||||
&& obj.trophytext <= 0 && obj.oldtrophytext <= 0
|
||||
&& !draw_return_editor_text
|
||||
&& !draw_mode_indicator_text)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue