return number of times a key's been down since last call.
| 184 | |
| 185 | // return number of times a key's been down since last call. |
| 186 | int ddio_KeyDownCount(int key) { |
| 187 | int count = DDIO_key_down_count[key]; |
| 188 | DDIO_key_down_count[key] = 0; |
| 189 | |
| 190 | return count; |
| 191 | } |
| 192 | |
| 193 | // returns the state of an ADJUSTED KEY VALUE |
| 194 | bool ddio_GetAdjKeyState(int adj_key) { |
no outgoing calls
no test coverage detected