From: Laurent Aimar Date: Sun, 18 Apr 2010 14:19:45 +0000 (+0200) Subject: Compilation fix for osdmenu. X-Git-Tag: 1.2.0-pre1~6972 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=c37501542c7aee37635f6cabd0301924c5f8b0dc;p=vlc Compilation fix for osdmenu. --- diff --git a/modules/video_filter/osdmenu.c b/modules/video_filter/osdmenu.c index 377f7407b2..b9f9807f60 100644 --- a/modules/video_filter/osdmenu.c +++ b/modules/video_filter/osdmenu.c @@ -648,8 +648,8 @@ static int MouseEvent( vlc_object_t *p_this, char const *psz_var, vout_thread_t *p_vout = (vout_thread_t*)p_sys->p_vout; int i_x = newval.coords.x; int i_y = newval.coords.y; - int v_h = p_vout->output.i_height; - int v_w = p_vout->output.i_width; + int v_h = p_vout->fmt_out.i_height; + int v_w = p_vout->fmt_out.i_width; if( i_y < 0 || i_x < 0 || i_y >= v_h || i_x >= v_w ) return VLC_SUCCESS;