diff options
Diffstat (limited to 'backends/platform/sdl')
| -rw-r--r-- | backends/platform/sdl/events.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/backends/platform/sdl/events.cpp b/backends/platform/sdl/events.cpp index 56636dfaa9..2b3c2c18fe 100644 --- a/backends/platform/sdl/events.cpp +++ b/backends/platform/sdl/events.cpp @@ -59,7 +59,7 @@ static int mapKey(SDLKey key, SDLMod mod, Uint16 unicode)  		return key;  	} else if (unicode) {  		return unicode; -	} else if (key >= 'a' && key <= 'z' && mod & KMOD_SHIFT) { +	} else if (key >= 'a' && key <= 'z' && (mod & KMOD_SHIFT)) {  		return key & ~0x20;  	} else if (key >= SDLK_NUMLOCK && key <= SDLK_EURO) {  		return 0; | 
