1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-22 17:49:43 +01:00

Fix clash between Gravitron start text and timer

There is a clash between the timer text and the "Survive for 60
seconds!" text. It's minor in English but it can be worse in other
languages (e.g. Polish).

So make the timer go away when that text is onscreen.
This commit is contained in:
Misa 2024-01-06 20:27:32 -08:00
parent 44fb76ba90
commit 9e2d6e921c

View file

@ -2221,6 +2221,7 @@ void gamerender(void)
&& (!game.swnmode || game.swngame != SWN_SUPERGRAVITRON) && (!game.swnmode || game.swngame != SWN_SUPERGRAVITRON)
&& game.showingametimer && game.showingametimer
&& !roomname_translator::enabled && !roomname_translator::enabled
&& (!game.swnmode || game.swngame != SWN_START_GRAVITRON_STEP_3)
&& !draw_return_editor_text) && !draw_return_editor_text)
{ {
const char* tempstring = loc::gettext("TIME:"); const char* tempstring = loc::gettext("TIME:");