mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-05 02:39:41 +01:00
Fix in-game timer going away after playing Super Gravitron
The problem was that it also needed to check that game.swnmode was true, in addition to game.swngame being 1, to actually check that the Super Gravitron was being played.
This commit is contained in:
parent
b7b9caacfc
commit
51fac68d3a
1 changed files with 1 additions and 1 deletions
|
@ -1722,7 +1722,7 @@ void gamerender(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (graphics.fademode==0 && !game.intimetrial && !game.isingamecompletescreen() && game.swngame != 1 && game.showingametimer)
|
if (graphics.fademode==0 && !game.intimetrial && !game.isingamecompletescreen() && (!game.swnmode || game.swngame != 1) && game.showingametimer)
|
||||||
{
|
{
|
||||||
graphics.bprint(6, 6, "TIME:", 255,255,255);
|
graphics.bprint(6, 6, "TIME:", 255,255,255);
|
||||||
graphics.bprint(46, 6, game.timestring(), 196, 196, 196);
|
graphics.bprint(46, 6, game.timestring(), 196, 196, 196);
|
||||||
|
|
Loading…
Reference in a new issue