removed braces for time real

This commit is contained in:
Leonetienne 2021-11-14 17:54:31 +01:00
parent d9d33fc581
commit e2e8a053f0

View File

@ -578,7 +578,7 @@ local function UpdateTime()
fsTime:SetText("Time played: " .. textCol_value .. d .. " days, " .. h .. ":" .. m .. ":" .. s);
local d, h, m, s = select(1, FormatTime(time() - Trackster_timestampRunBegin));
fsAbsTime:SetText("Time (real): " .. textCol_value .. d .. " days, " .. h .. ":" .. m .. ":" .. s);
fsAbsTime:SetText("Time real: " .. textCol_value .. d .. " days, " .. h .. ":" .. m .. ":" .. s);
end