[vlc-commits] Old RC: inverted logic (fixes #11052)
Rémi Denis-Courmont
git at videolan.org
Mon Mar 31 18:51:55 CEST 2014
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Mar 31 19:50:45 2014 +0300| [dd7b6ad867f995c6a9699a9599667e4e4f8e2da0] | committer: Rémi Denis-Courmont
Old RC: inverted logic (fixes #11052)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=dd7b6ad867f995c6a9699a9599667e4e4f8e2da0
---
modules/control/rc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/control/rc.c b/modules/control/rc.c
index d4cf792..8e5a162 100644
--- a/modules/control/rc.c
+++ b/modules/control/rc.c
@@ -740,7 +740,7 @@ static void *Run( void *data )
else
fs = var_ToggleBool( p_sys->p_playlist, "fullscreen" );
- if( p_sys->p_input == NULL )
+ if( p_sys->p_input != NULL )
{
vout_thread_t *p_vout = input_GetVout( p_sys->p_input );
if( p_vout )
More information about the vlc-commits
mailing list