From 67b72a1c444f3f16cd0eaec975a2596aa919f110 Mon Sep 17 00:00:00 2001 From: RypoFalem Date: Tue, 16 Sep 2025 22:19:42 -0500 Subject: [PATCH 1/2] Print recipt after using dumprrautomedaltimes Give the user some feedback and let them know where the csv is located. --- src/p_setup.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/p_setup.cpp b/src/p_setup.cpp index d8f91e0fd..db7f73e43 100644 --- a/src/p_setup.cpp +++ b/src/p_setup.cpp @@ -9499,6 +9499,7 @@ void Command_dumprrautomedaltimes(void) ); } fclose(out); + CONS_Printf("Medal times written to %s\n", outname); } void Command_Platinums(void) From ddee1675a1a2d852dde2382e12596f3c096a7bea Mon Sep 17 00:00:00 2001 From: RypoFalem Date: Tue, 16 Sep 2025 22:41:51 -0500 Subject: [PATCH 2/2] 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]++;