diff options
Diffstat (limited to 'src/project.cpp')
| -rw-r--r-- | src/project.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/project.cpp b/src/project.cpp index cf774a1..c981f03 100644 --- a/src/project.cpp +++ b/src/project.cpp @@ -361,7 +361,7 @@ void PkeProject_Load(const char *filePath) { const char *safeFilePath = filePath == nullptr ? PKE_PROJ_DEFAULT_FILENAME : filePath; std::ifstream f(safeFilePath); if (!f.is_open()) { - fprintf(stderr, "While attempting to load project file, failed to open requested file for reading: %s", safeFilePath); + fprintf(stderr, "While attempting to load project file, failed to open requested file for reading: %s\n", safeFilePath); return; } memset(projReadLine, '\0', projReadLineLength); |
