[vlc-devel] commit: Fix a typo in SDL vout plugin (Joseph Tulou )

git version control git at videolan.org
Sat Nov 22 02:36:44 CET 2008


vlc | branch: 0.9-bugfix | Joseph Tulou <brezhoneg1 at yahoo.fr> | Sat Nov 22 00:36:49 2008 +0000| [e135593907ec36633fb563c530929024a6552638] | 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>
(cherry picked from commit 31412310fd0a5ecf23e3c8ba39e0b0818cb861ab)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e135593907ec36633fb563c530929024a6552638
---

 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 96513e5..da5e1d5 100644
--- a/modules/video_output/sdl.c
+++ b/modules/video_output/sdl.c
@@ -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 )




More information about the vlc-devel mailing list