Skip to content
Snippets Groups Projects
Commit a8cd6960 authored by damienf's avatar damienf
Browse files

input.c: fixed state (broke pause)

parent 199f4a0e
No related branches found
No related tags found
No related merge requests found
......@@ -159,7 +159,7 @@ void MRLSplit( vlc_object_t *, char *, char **, char **, char ** );
static inline void input_ChangeState( input_thread_t *p_input, int state )
{
vlc_value_t val;
val.i_int = state;
val.i_int = p_input->i_state = state;
var_Change( p_input, "state", VLC_VAR_SETVALUE, &val, NULL );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment