From: RĂ©mi Duraffort Date: Thu, 9 Jul 2009 10:04:45 +0000 (+0200) Subject: projectm: fix typo. X-Git-Tag: 1.1.0-ff~5074 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=fc18c1cf014e7f0ab51cb9f104d346621df01433;p=vlc projectm: fix typo. --- diff --git a/modules/visualization/projectm.cpp b/modules/visualization/projectm.cpp index 1c011a5024..60c2052466 100644 --- a/modules/visualization/projectm.cpp +++ b/modules/visualization/projectm.cpp @@ -122,7 +122,7 @@ static int initOpenGL( projectm_thread_t *p_thread ) /* Initialize the opengl object */ video_format_Setup( &p_thread->p_opengl->fmt_in, VLC_CODEC_RGB32, - 640, 460, 1 ); + p_thread->i_width, p_thread->i_height, 1 ); p_thread->p_opengl->i_window_width = p_thread->i_width; p_thread->p_opengl->i_window_height = p_thread->i_height; p_thread->p_opengl->render.i_width = p_thread->i_width;