[vlc-devel] commit: Fix a typo in SDL vout plugin (Joseph Tulou )
git version control
git at videolan.org
Sat Nov 22 01:38:52 CET 2008
vlc | branch: master | Joseph Tulou <brezhoneg1 at yahoo.fr> | Sat Nov 22 00:36:49 2008 +0000| [31412310fd0a5ecf23e3c8ba39e0b0818cb861ab] | committer: Christophe Mutricy
Fix a typo in SDL vout plugin
It was preventing mouse to work properly.
Signed-off-by: Christophe Mutricy <xtophe at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=31412310fd0a5ecf23e3c8ba39e0b0818cb861ab
---
modules/video_output/sdl.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/video_output/sdl.c b/modules/video_output/sdl.c
index 3dbcfef..17efea7 100644
--- a/modules/video_output/sdl.c
+++ b/modules/video_output/sdl.c
@@ -463,7 +463,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 )
More information about the vlc-devel
mailing list