| 190 | } |
| 191 | |
| 192 | void ProcessKeyboard_SDL(DWORD /*sysTime*/, DWORD timeDelta) |
| 193 | { |
| 194 | // Use GlobalTickCount() so all timestamps share the same epoch. |
| 195 | // (Event timestamps are in GlobalTickCount() space, not ::GetTickCount()) |
| 196 | DWORD sysTime = GlobalTickCount(); |
| 197 | GInput.keyboard.Update(sysTime, timeDelta, GWorld->IsUserInputEnabled()); |
| 198 | if (GWorld) |
| 199 | { |
| 200 | GWorld->HandleVoiceChatShortcuts(); |
| 201 | } |
no test coverage detected