Skip to content

Commit 2db3568

Browse files
committed
fix: newline
1 parent df7fe43 commit 2db3568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Features/Speedrun/SpeedrunTimer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1110,7 +1110,7 @@ CON_COMMAND_F_COMPLETION(sar_speedrun_autoreset_load, "sar_speedrun_autoreset_lo
11101110
while (std::getline(file, line)) {
11111111
int tick = atoi(line.c_str());
11121112
if (tick < last_tick) {
1113-
console->Print("Error: autoreset ticks must be increasing, but %d < %d\n. Giving up", tick, last_tick);
1113+
console->Print("Error: autoreset ticks must be increasing, but %d < %d. Giving up\n", tick, last_tick);
11141114
g_autoreset_ticks.clear();
11151115
return;
11161116
}

0 commit comments

Comments
 (0)