From ec0a73451147bb37442331803fb65b803b18cd43 Mon Sep 17 00:00:00 2001 From: Hielke Morsink Date: Sat, 2 May 2020 16:40:21 +0200 Subject: [PATCH] Fix: Silent replay record message gets overwritten (#11600) --- src/openrct2/Game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/Game.cpp b/src/openrct2/Game.cpp index 0047162ffc..e0d8794fd1 100644 --- a/src/openrct2/Game.cpp +++ b/src/openrct2/Game.cpp @@ -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()); } }