PS3: Make use of an updated SDL2 version

This version, available at https://bitbucket.org/bgK/sdl_psl1ght, is based on SDL 2.0.3.
This commit is contained in:
Bastien Bouclet 2014-06-27 16:45:58 +02:00
parent d80c39bb29
commit b9a1074999
11 changed files with 32 additions and 36 deletions

View file

@ -314,7 +314,7 @@ Common::KeyCode SdlEventSource::SDLToOSystemKeycode(const SDLKey key) {
case SDLK_y: return Common::KEYCODE_y;
case SDLK_z: return Common::KEYCODE_z;
case SDLK_DELETE: return Common::KEYCODE_DELETE;
#if SDL_VERSION_ATLEAST(1, 3, 0)
#if SDL_VERSION_ATLEAST(2, 0, 0)
case SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_GRAVE): return Common::KEYCODE_TILDE;
#else
case SDLK_WORLD_16: return Common::KEYCODE_TILDE;