mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-03-14 06:43:27 +00:00
in_sdl: SDL1: don't send '`' or '~' to the console.
git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@1023 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
718ebfb9ff
commit
efb1a35e3e
1 changed files with 1 additions and 1 deletions
|
@ -788,7 +788,7 @@ void IN_SendKeyEvents (void)
|
|||
break;
|
||||
}
|
||||
Key_Event (sym, state);
|
||||
if (event.type == SDL_KEYDOWN)
|
||||
if (event.type == SDL_KEYDOWN && sym != '`' && sym != '~')
|
||||
Char_Event (sym);
|
||||
break;
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue