summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/player/command.c b/player/command.c
index 723996d9be..572d0874d0 100644
--- a/player/command.c
+++ b/player/command.c
@@ -6493,13 +6493,8 @@ void mp_option_change_callback(void *ctx, struct m_config_option *co, int flags,
}
}
- if (opt_ptr == &opts->pause) {
- if (mpctx->playback_initialized) {
- int val = opts->pause;
- opts->pause = !val; // temporary hack to force update
- set_pause_state(mpctx, val);
- }
- }
+ if (opt_ptr == &opts->pause)
+ set_pause_state(mpctx, opts->pause);
if (opt_ptr == &opts->audio_delay) {
if (mpctx->ao_chain) {