summaryrefslogtreecommitdiff
path: root/src/asset-manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/asset-manager.cpp')
-rw-r--r--src/asset-manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/asset-manager.cpp b/src/asset-manager.cpp
index 5eef783..749aa9e 100644
--- a/src/asset-manager.cpp
+++ b/src/asset-manager.cpp
@@ -241,12 +241,12 @@ void AM_GC() {
(void)user_data;
Asset &asset = *reinterpret_cast<Asset *>(arr_obj_data);
if (PK_HAS_FLAG(asset.flags, PKE_ASSET_FLAGS_MEM_STATIC)) {
- fprintf(stdout, "[AM_GC] Asset '%.16s' is static, skipping.", asset.key);
+ fprintf(stdout, "[AM_GC] Asset '%.16s' is static, skipping.\n", asset.key);
return;
}
switch (asset.state) {
case PKE_ASSET_LOADING_STATE_LOADING:
- fprintf(stdout, "[AM_GC] Asset '%.16s' is still loading.", asset.key);
+ fprintf(stdout, "[AM_GC] Asset '%.16s' is still loading.\n", asset.key);
break;
default:
void(0);