From d122ddf1c7b6b2afbf244bd82d558789d3811c09 Mon Sep 17 00:00:00 2001 From: toaster Date: Fri, 20 Oct 2023 13:31:58 +0100 Subject: [PATCH] UC_TOTALTUMBLETIME: Show centiseconds too --- src/m_cond.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/m_cond.c b/src/m_cond.c index 8eb78c96c..6f488d634 100644 --- a/src/m_cond.c +++ b/src/m_cond.c @@ -1977,9 +1977,10 @@ static const char *M_GetConditionString(condition_t *cn) return va("collect %u Rings", cn->requirement); case UC_TOTALTUMBLETIME: - return va("tumble through the air for %i:%02i", + return va("tumble through the air for %i:%02i.%02i", G_TicsToMinutes(cn->requirement, true), - G_TicsToSeconds(cn->requirement)); + G_TicsToSeconds(cn->requirement), + G_TicsToCentiseconds(cn->requirement)); case UC_GAMECLEAR: // Requires game beaten >= x times if (cn->requirement > 1)