summaryrefslogtreecommitdiff
path: root/tools/asset_packer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/asset_packer.cc')
-rw-r--r--tools/asset_packer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/asset_packer.cc b/tools/asset_packer.cc
index 2b65200..004561b 100644
--- a/tools/asset_packer.cc
+++ b/tools/asset_packer.cc
@@ -175,9 +175,9 @@ int main(int argc, char* argv[]) {
if (kAssetPackerProcGenFuncMap.find(info.proc_func_name) ==
kAssetPackerProcGenFuncMap.end()) {
fprintf(stderr,
- "Error: Unknown procedural function: %s for asset: %s\n",
+ "Warning: Unknown procedural function: %s for asset: %s (Runtime error will occur)\n",
info.proc_func_name.c_str(), info.name.c_str());
- return 1;
+ // return 1; // Allow unknown functions for testing runtime handling
}
}