From acc00f4eb7c02ba270cd71fa4bd50a468e6b0d19 Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Fri, 8 Dec 2023 07:14:35 -0500 Subject: err formatting --- src/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game.cpp') diff --git a/src/game.cpp b/src/game.cpp index 98962d7..5166ad0 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -384,7 +384,7 @@ void Game_SaveSceneFile(const char *sceneFilePath) { void Game_LoadSceneFile(const char *sceneFilePath) { std::ifstream f(sceneFilePath); if (!f.is_open()) { - fprintf(stderr, "Failed to load requested scene file: %s", sceneFilePath); + fprintf(stderr, "Failed to load requested scene file: %s\n", sceneFilePath); return; } memset(readLine, '\0', readLineLength); -- cgit v1.2.3