| 20 | // *********************************************************************** |
| 21 | |
| 22 | int LuaGetButtonUp(lua_State* pLua) { |
| 23 | ControllerButton button = (ControllerButton)luaL_checkinteger(pLua, 1); |
| 24 | lua_pushboolean(pLua, GetButtonUp(button)); |
| 25 | return 1; |
| 26 | } |
| 27 | |
| 28 | // *********************************************************************** |
| 29 |
nothing calls this directly
no test coverage detected