summaryrefslogtreecommitdiff
path: root/src/project.cpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-08-19 13:51:40 -0400
committerJonathan Bradley <jcb@pikum.xyz>2025-08-19 14:33:08 -0400
commit154436ab88925540f86f43c0ac885c080949aa9b (patch)
tree43a22f26286428f0d165fc1ff801cd0cb87092c6 /src/project.cpp
parentebcae77b137a759c453b89a774ece5a755078a38 (diff)
pke: ui box type button image
Diffstat (limited to 'src/project.cpp')
-rw-r--r--src/project.cpp2
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);