From 47eba09edbee673e4d08fe8a731118ae9757d218 Mon Sep 17 00:00:00 2001 From: Misa Date: Sat, 11 Jul 2020 14:12:17 -0700 Subject: [PATCH] Fix missing newline on printf for customsavequick() failure A missing newline in a printf() is annoying, it means the next line of output is concatenated to the previous one. --- desktop_version/src/Game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop_version/src/Game.cpp b/desktop_version/src/Game.cpp index ce559976..70c650d8 100644 --- a/desktop_version/src/Game.cpp +++ b/desktop_version/src/Game.cpp @@ -6114,7 +6114,7 @@ void Game::customsavequick(std::string savfile) else { printf("Could Not Save game!\n"); - printf("Failed: %s%s%s", saveFilePath.c_str(), levelfile.c_str(), ".vvv"); + printf("Failed: %s%s%s\n", saveFilePath.c_str(), levelfile.c_str(), ".vvv"); } }