mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Fix time trial result displaying 00:60 instead of 01:00
If your time was exactly 60 seconds, it would display 00:60 instead of 01:00.
This commit is contained in:
@@ -6828,7 +6828,7 @@ std::string Game::resulttimestring()
|
||||
{
|
||||
//given result time in seconds:
|
||||
std::string tempstring = "";
|
||||
if (timetrialresulttime > 60)
|
||||
if (timetrialresulttime >= 60)
|
||||
{
|
||||
tempstring = help.twodigits(int((timetrialresulttime - (timetrialresulttime % 60)) / 60)) + ":"
|
||||
+ help.twodigits(timetrialresulttime % 60);
|
||||
|
||||
Reference in New Issue
Block a user