Commit e1355939 authored by Joseph Tulou's avatar Joseph Tulou Committed by Christophe Mutricy

Fix a typo in SDL vout plugin

It was preventing mouse to work properly.
Signed-off-by: default avatarChristophe Mutricy <xtophe@videolan.org>
(cherry picked from commit 31412310)
parent fcf37208
......@@ -464,7 +464,7 @@ static int Manage( vout_thread_t *p_vout )
var_Get( p_vout, "mouse-button-down", &val );
val.i_int &= ~4;
var_Set( p_vout, "mous-button-down", val );
var_Set( p_vout, "mouse-button-down", val );
p_intf = vlc_object_find( p_vout, VLC_OBJECT_INTF,
FIND_ANYWHERE );
if( p_intf )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment