From a8cd696065beee48f46aa90f1cdf9c3828547b6a Mon Sep 17 00:00:00 2001 From: Damien Fouilleul Date: Mon, 4 Sep 2006 21:48:45 +0000 Subject: [PATCH] input.c: fixed state (broke pause) --- src/input/input_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/input_internal.h b/src/input/input_internal.h index 6014e10e12..8b16f1a1e0 100644 --- a/src/input/input_internal.h +++ b/src/input/input_internal.h @@ -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 ); } -- 2.39.2