joypad.getdown(which) returns a table of every game button that is currently held
| 2854 | // joypad.getdown(which) |
| 2855 | // returns a table of every game button that is currently held |
| 2856 | static int joypad_getdown(lua_State *L) |
| 2857 | { |
| 2858 | return joy_get_internal(L, false, true); |
| 2859 | } |
| 2860 | // joypad.getup(which) |
| 2861 | // returns a table of every game button that is not currently held |
| 2862 | static int joypad_getup(lua_State *L) |
nothing calls this directly
no test coverage detected