diff --git a/src/lua-engine.cpp b/src/lua-engine.cpp index 033aabb8..6748dca9 100644 --- a/src/lua-engine.cpp +++ b/src/lua-engine.cpp @@ -6185,8 +6185,6 @@ int FCEU_LoadLuaCode(const char *filename, const char *arg) { //wasPaused = FCEUI_EmulationPaused(); //if (wasPaused) FCEUI_ToggleEmulationPause(); - // And run it right now. :) - FCEU_LuaFrameBoundary(); // Set up our protection hook to be executed once every 10,000 bytecode instructions. //lua_sethook(thread, FCEU_LuaHookFunction, LUA_MASKCOUNT, 10000); @@ -6206,6 +6204,9 @@ int FCEU_LoadLuaCode(const char *filename, const char *arg) { if (info_onstart) info_onstart(info_uid); + // And run it right now. :) + FCEU_LuaFrameBoundary(); + // We're done. return 1; }