]> git.sesse.net Git - vlc/commitdiff
Typo making seekpoint_next to to seekpoint 0. Clearly chapter
authorRocky Bernstein <rocky@videolan.org>
Wed, 22 Dec 2004 02:11:35 +0000 (02:11 +0000)
committerRocky Bernstein <rocky@videolan.org>
Wed, 22 Dec 2004 02:11:35 +0000 (02:11 +0000)
navigation is neither used or the code tested much.

src/input/input.c

index c9b2ef6b5d76e5385fce1e4ad83e64fb1bc9e404..d504db7f160eccbc24ec5f4acdb3a30ffb286493 100644 (file)
@@ -1510,7 +1510,7 @@ static vlc_bool_t Control( input_thread_t *p_input, int i_type,
 
                 if( i_type == INPUT_CONTROL_SET_SEEKPOINT_PREV )
                     i_seekpoint = p_access->info.i_seekpoint - 1;
-                else if( i_type == INPUT_CONTROL_SET_TITLE_NEXT )
+                else if( i_type == INPUT_CONTROL_SET_SEEKPOINT_NEXT ) 
                     i_seekpoint = p_access->info.i_seekpoint + 1;
                 else
                     i_seekpoint = val.i_int;