| 468 | } |
| 469 | |
| 470 | int lua_panic(lua_State* L) |
| 471 | { |
| 472 | print_output("[ResourceManager.lua_panic]", LUA_ERRRUN); |
| 473 | Debug.fatal(DEBUG_INFO, "[ResourceManager.lua_panic]: %s", lua_isstring(L, -1) ? lua_tostring(L, -1) : ""); |
| 474 | return 0; |
| 475 | } |
| 476 | |
| 477 | #ifndef LUABIND_09 |
| 478 | static void* __cdecl luabind_allocator(luabind::memory_allocation_function_parameter, const void* pointer, |
nothing calls this directly
no test coverage detected