summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorcehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-10-09 17:08:47 +0000
committercehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-10-09 17:08:47 +0000
commit22bb046adc6e385fb408fbefbbb18ea4e8a9dc7b (patch)
treea8e510374b7a20814758aeffcef1777b643e3b08 /libvo
parent3035850d273a4675f52db986beb995fe2a63002a (diff)
downloadmpv-22bb046adc6e385fb408fbefbbb18ea4e8a9dc7b.tar.bz2
mpv-22bb046adc6e385fb408fbefbbb18ea4e8a9dc7b.tar.xz
Replace numeric constants by their defines.
Fixes icc warning #188: enumerated type mixed with another type git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27738 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_sdl.c b/libvo/vo_sdl.c
index 4fca181e24..8e3643970b 100644
--- a/libvo/vo_sdl.c
+++ b/libvo/vo_sdl.c
@@ -1120,7 +1120,7 @@ static void check_events (void)
{
struct sdl_priv_s *priv = &sdl_priv;
SDL_Event event;
- SDLKey keypressed = 0;
+ SDLKey keypressed = SDLK_UNKNOWN;
/* Poll the waiting SDL Events */
while ( SDL_PollEvent(&event) ) {