| 245 | } |
| 246 | |
| 247 | void Input_SetNonRepeatable(int key, int pressed) { |
| 248 | if (pressed) { |
| 249 | if (Input.Pressed[key]) return; |
| 250 | Input_SetPressed(key); |
| 251 | } else { |
| 252 | Input_SetReleased(key); |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | void Input_Clear(void) { |
| 257 | int i; |
no test coverage detected