MCPcopy Create free account
hub / github.com/9chu/LuaSTGPlus / ChangeVideoMode

Method ChangeVideoMode

LuaSTGPlus/LuaWrapper.cpp:475–484  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected