mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 18:19:43 +01:00
Update trophy text timer in fixed-timestep gamelogic()
Otherwise it, too, goes by too quickly.
This commit is contained in:
parent
92ee33043d
commit
905696c263
2 changed files with 5 additions and 1 deletions
|
@ -1495,4 +1495,9 @@ void gamelogic()
|
||||||
{
|
{
|
||||||
game.act_fade--;
|
game.act_fade--;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (obj.trophytext > 0)
|
||||||
|
{
|
||||||
|
obj.trophytext--;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1650,7 +1650,6 @@ void gamerender()
|
||||||
if (obj.trophytext > 0)
|
if (obj.trophytext > 0)
|
||||||
{
|
{
|
||||||
graphics.drawtrophytext();
|
graphics.drawtrophytext();
|
||||||
obj.trophytext--;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue