Commit b19e66ac authored by Rocky Bernstein's avatar Rocky Bernstein

Typo making seekpoint_next to to seekpoint 0. Clearly chapter

navigation is neither used or the code tested much.
parent d701b7bc
...@@ -1510,7 +1510,7 @@ static vlc_bool_t Control( input_thread_t *p_input, int i_type, ...@@ -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 ) if( i_type == INPUT_CONTROL_SET_SEEKPOINT_PREV )
i_seekpoint = p_access->info.i_seekpoint - 1; 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; i_seekpoint = p_access->info.i_seekpoint + 1;
else else
i_seekpoint = val.i_int; i_seekpoint = val.i_int;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment