joypad.getup(which) returns a table of every game button that is not currently held
| 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) |
| 2863 | { |
| 2864 | return joy_get_internal(L, true, false); |
| 2865 | } |
| 2866 | |
| 2867 | // table joypad.getimmediate(int which) |
| 2868 | // Reads immediate state of joypads (at the moment of calling) |
nothing calls this directly
no test coverage detected