Skip to content

Commit fdb44c4

Browse files
committed
fix: format fullgame time in stats
1 parent 6729406 commit fdb44c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Features/Stats/StatsCounter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ bool StatsCounter::ExportToFile(const std::string &path) {
153153
<< CSV_SEPARATOR << map.second.CMretries
154154
<< CSV_SEPARATOR << SpeedrunTimer::SimpleFormat(map.second.CMTotalTime).c_str()
155155
<< CSV_SEPARATOR << map.second.FullGameRetries
156-
<< CSV_SEPARATOR << map.second.FullGameTotalTime
156+
<< CSV_SEPARATOR << SpeedrunTimer::SimpleFormat(map.second.FullGameTotalTime).c_str()
157157
<< std::endl;
158158
}
159159

0 commit comments

Comments
 (0)