From c37501542c7aee37635f6cabd0301924c5f8b0dc Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Sun, 18 Apr 2010 16:19:45 +0200 Subject: [PATCH] Compilation fix for osdmenu. --- modules/video_filter/osdmenu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.2