paint: fix start.arm on wasm

This commit is contained in:
luboslenco
2026-07-29 16:38:10 +02:00
parent 9f26d5104c
commit 89e91e2c66
+5
View File
@@ -578,6 +578,11 @@ void base_init() {
// Startup project
char *start_arm = string("%s/start.arm", iron_internal_files_location());
#ifdef IRON_WASM
start_arm = "./start.arm";
#endif
if (iron_file_exists(start_arm)) {
g_project->_->filepath = start_arm;
base_start_arm_found = true;