From ddee1675a1a2d852dde2382e12596f3c096a7bea Mon Sep 17 00:00:00 2001 From: RypoFalem Date: Tue, 16 Sep 2025 22:41:51 -0500 Subject: [PATCH] Fix "platinums" command time differences They never accounted for differences above 1 minute. --- src/p_setup.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/p_setup.cpp b/src/p_setup.cpp index db7f73e43..92d070e43 100644 --- a/src/p_setup.cpp +++ b/src/p_setup.cpp @@ -9550,8 +9550,10 @@ void Command_Platinums(void) } else { - CONS_Printf(", %s (+%d:%02d)", stafftime.second.c_str(), - G_TicsToSeconds(stafftime.first - platinumtime), G_TicsToCentiseconds(stafftime.first - platinumtime)); + CONS_Printf(", %s (+%d:%02d:%02d)", stafftime.second.c_str(), + G_TicsToMinutes(stafftime.first - platinumtime, true), + G_TicsToSeconds(stafftime.first - platinumtime), + G_TicsToCentiseconds(stafftime.first - platinumtime)); } names[stafftime.second]++;