]> git.sesse.net Git - vlc/commitdiff
Fix small copy & paste mistake. It had no effect, but was wrong.
authorJean-Paul Saman <jpsaman@videolan.org>
Thu, 28 Feb 2008 10:02:32 +0000 (10:02 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Thu, 28 Feb 2008 10:02:32 +0000 (10:02 +0000)
modules/video_output/fb.c

index 56aaae54aceafe3cc70fb94da6ab0f057ac361bb..287fbd32ece10ed6ad426e032276741df464f77e 100644 (file)
@@ -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 */