diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-12-08 07:14:35 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-12-08 07:14:35 -0500 |
| commit | acc00f4eb7c02ba270cd71fa4bd50a468e6b0d19 (patch) | |
| tree | 2e335480e54922e4e7576a55afbc68eabcea4e38 /src/game.cpp | |
| parent | 6e76f8342ad4d1f9a576f25bfb992aac6e4d2eee (diff) | |
err formatting
Diffstat (limited to 'src/game.cpp')
| -rw-r--r-- | src/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
