- removed const that erorred out.

This commit is contained in:
Christoph Oelckers 2020-09-28 21:38:48 +02:00
parent 51518d63a4
commit 3cfd19b2ef
1 changed files with 1 additions and 1 deletions

View File

@ -1066,7 +1066,7 @@ void IOKitJoystickManager::UseAxesPolling(const bool axesPolling)
void PostDeviceChangeEvent() void PostDeviceChangeEvent()
{ {
const event_t event = { EV_DeviceChange }; event_t event = { EV_DeviceChange };
D_PostEvent(&event); D_PostEvent(&event);
} }