fix(runtime): add missing break after JakX goal_main (#4356)

(AI assisted)
This commit is contained in:
Alexander J. Semenuk
2026-07-22 19:07:00 -04:00
committed by GitHub
parent 02e9579fb5
commit b0ec3703f9
+1
View File
@@ -239,6 +239,7 @@ void ee_runner(SystemThreadInterface& iface) {
break;
case GameVersion::JakX:
jakx::goal_main(g_argc, g_argv);
break;
default:
ASSERT_MSG(false, "Unsupported game version");
}