| 473 | return 0; |
| 474 | } |
| 475 | static int ChangeVideoMode(lua_State* L)LNOEXCEPT |
| 476 | { |
| 477 | lua_pushboolean(L, LAPP.ChangeVideoMode( |
| 478 | luaL_checkinteger(L, 1), |
| 479 | luaL_checkinteger(L, 2), |
| 480 | lua_toboolean(L, 3) == 0 ? false : true, |
| 481 | lua_toboolean(L, 4) == 0 ? false : true |
| 482 | )); |
| 483 | return 1; |
| 484 | } |
| 485 | static int SetSplash(lua_State* L)LNOEXCEPT |
| 486 | { |
| 487 | LAPP.SetSplash(lua_toboolean(L, 1) == 0 ? false : true); |
nothing calls this directly
no outgoing calls
no test coverage detected