scripting prevent-default fix

This commit is contained in:
MihailRis
2024-01-14 15:00:11 +03:00
parent 6d60cc8276
commit beddfb5359
+1 -3
View File
@@ -55,9 +55,7 @@ int call_func(lua_State* L, int argc, const std::string& name) {
std::cerr << lua_tostring(L,-1) << std::endl;
return 0;
}
int res_count = lua_tointeger(L, -1);
lua_pop(L, -1);
return res_count;
return 1;
}
void scripting::initialize(EnginePaths* paths) {