| 467 | return 0; |
| 468 | } |
| 469 | static int SetResolution(lua_State* L)LNOEXCEPT |
| 470 | { |
| 471 | LAPP.SetResolution(static_cast<fuInt>(::max(luaL_checkinteger(L, 1), 0)), |
| 472 | static_cast<fuInt>(::max(luaL_checkinteger(L, 2), 0))); |
| 473 | return 0; |
| 474 | } |
| 475 | static int ChangeVideoMode(lua_State* L)LNOEXCEPT |
| 476 | { |
| 477 | lua_pushboolean(L, LAPP.ChangeVideoMode( |
nothing calls this directly
no outgoing calls
no test coverage detected