summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/command.c b/player/command.c
index 5a523663e8..aa6c5f763c 100644
--- a/player/command.c
+++ b/player/command.c
@@ -1248,7 +1248,7 @@ static int mp_property_volume(void *ctx, struct m_property *prop,
if (!mixer_audio_initialized(mpctx->mixer))
return M_PROPERTY_ERROR;
struct m_property_switch_arg *sarg = arg;
- mixer_addvolume(mpctx->mixer, mpctx->opts->volstep * sarg->inc);
+ mixer_addvolume(mpctx->mixer, sarg->inc);
return M_PROPERTY_OK;
}
}