From: Jean-Paul Saman Date: Thu, 28 Feb 2008 10:02:32 +0000 (+0000) Subject: Fix small copy & paste mistake. It had no effect, but was wrong. X-Git-Tag: 0.9.0-test0~2444 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=796b1e94604f53a7165abc1cecfbc9efec1d2af2;p=vlc Fix small copy & paste mistake. It had no effect, but was wrong. --- diff --git a/modules/video_output/fb.c b/modules/video_output/fb.c index 56aaae54ac..287fbd32ec 100644 --- a/modules/video_output/fb.c +++ b/modules/video_output/fb.c @@ -199,7 +199,7 @@ static int Create( vlc_object_t *p_this ) p_vout->pf_control = Control; /* Does the framebuffer uses hw acceleration? */ - p_sys->b_hw_accel = p_sys->b_tty = var_CreateGetBool( p_vout, "fb-hw-accel" ); + p_sys->b_hw_accel = var_CreateGetBool( p_vout, "fb-hw-accel" ); /* Set tty and fb devices */ p_sys->i_tty = 0; /* 0 == /dev/tty0 == current console */