1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-11 04:01:31 +00:00

fixed my previousily added bug: ifdef buggy_sdl: keypressed: default case

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1123 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
al3x 2001-06-13 15:03:27 +00:00
parent 9334252452
commit 6bef8b7c5c

View File

@ -1051,9 +1051,7 @@ static void check_events (void)
case SDLK_SLASH: case SDLK_SLASH:
case SDLK_KP_DIVIDE: case SDLK_KP_DIVIDE:
case SDLK_s: mplayer_put_key('/'); break; case SDLK_s: mplayer_put_key('/'); break;
default: default: break;
mplayer_put_key(keypressed);
break;
} }
break; break;
case SDL_KEYUP: case SDL_KEYUP:
@ -1240,4 +1238,3 @@ uninit(void)
#endif #endif
sdl_close(); sdl_close();
} }