mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-04-22 09:40:46 +00:00
Fixed unknown event 772 error on Linux
This commit is contained in:
parent
ee014e80d0
commit
f1139f7a33
1 changed files with 5 additions and 1 deletions
|
@ -1708,8 +1708,12 @@ sysEvent_t Sys_GetEvent()
|
|||
common->Warning( "unknown user event %u", ev.user.code );
|
||||
}
|
||||
continue; // just handle next event
|
||||
|
||||
case SDL_KEYMAPCHANGED:
|
||||
continue; // just handle next event
|
||||
|
||||
default:
|
||||
common->Warning( "unknown event %u", ev.type );
|
||||
common->Warning( "unknown event %u = %#x", ev.type, ev.type );
|
||||
continue; // just handle next event
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue