From 99748d1f9a49532503ed7d2ff605e7fec93ab35e Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Sun, 29 Nov 2009 21:24:24 +0100 Subject: [PATCH] Hotkeys: add missing break in switch --- modules/control/hotkeys.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/control/hotkeys.c b/modules/control/hotkeys.c index bd5d82b1c9..81b2ed271c 100644 --- a/modules/control/hotkeys.c +++ b/modules/control/hotkeys.c @@ -265,6 +265,7 @@ static int PutAction( intf_thread_t *p_intf, int i_action ) vlc_object_t *obj = p_vout ? VLC_OBJECT(p_vout) : VLC_OBJECT(p_playlist); var_ToggleBool( obj, "directx-wallpaper" ); + break; } #endif @@ -286,6 +287,7 @@ static int PutAction( intf_thread_t *p_intf, int i_action ) case ACTIONID_RANDOM: { var_ToggleBool( p_playlist, "random" ); + break; } case ACTIONID_PLAY_PAUSE: -- 2.39.2