| 462 | return 1; |
| 463 | } |
| 464 | static int SetVsync(lua_State* L)LNOEXCEPT |
| 465 | { |
| 466 | LAPP.SetVsync(lua_toboolean(L, 1) == 0 ? false : true); |
| 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)), |
nothing calls this directly
no outgoing calls
no test coverage detected