mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-10 19:09:45 +01:00
Fix off-by-one in trophy text interpolation
Otherwise it would appear to be clipped off too early, if that was even noticeable.
This commit is contained in:
parent
c3df1bcc3f
commit
52f4799405
1 changed files with 1 additions and 1 deletions
|
@ -1617,7 +1617,7 @@ void gamerender()
|
||||||
graphics.Print(5, 12, game.activity_lastprompt, game.activity_r*act_alpha, game.activity_g*act_alpha, game.activity_b*act_alpha, true);
|
graphics.Print(5, 12, game.activity_lastprompt, game.activity_r*act_alpha, game.activity_g*act_alpha, game.activity_b*act_alpha, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (obj.trophytext > 0)
|
if (obj.trophytext > 0 || obj.oldtrophytext > 0)
|
||||||
{
|
{
|
||||||
graphics.drawtrophytext();
|
graphics.drawtrophytext();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue