| 176 | // ---------------------------------------------------------------------------- |
| 177 | |
| 178 | float ddio_KeyDownTime(int key) { |
| 179 | ASSERT(DDIO_key_init); |
| 180 | |
| 181 | // snap off shift states, etc. |
| 182 | return ddio_InternalKeyDownTime((uint8_t)(key & 0xff)); |
| 183 | } |
| 184 | |
| 185 | // return number of times a key's been down since last call. |
| 186 | int ddio_KeyDownCount(int key) { |
no test coverage detected