1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Fix: Silent replay record message gets overwritten (#11600)

This commit is contained in:
Hielke Morsink
2020-05-02 16:40:21 +02:00
committed by GitHub
parent 1f7ef019fc
commit ec0a734511

View File

@@ -882,7 +882,7 @@ void start_silent_record()
replayManager->GetCurrentReplayInfo(info);
safe_strcpy(gSilentRecordingName, info.FilePath.c_str(), MAX_PATH);
const char* logFmt = "Silent replay recording started: (%s) %s";
const char* logFmt = "Silent replay recording started: (%s) %s\n";
printf(logFmt, info.Name.c_str(), info.FilePath.c_str());
}
}