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 54fc79fede..0fb36d7142 100644
--- a/player/command.c
+++ b/player/command.c
@@ -4123,7 +4123,7 @@ int run_command(struct MPContext *mpctx, struct mp_cmd *cmd, struct mpv_node *re
get_current_pos_ratio(mpctx, false) + v / 100.0,
precision, false);
set_osd_function(mpctx, v > 0 ? OSD_FFW : OSD_REW);
- } else if (abs) { /* Absolute seek by percentage */
+ } else if (abs) { // Absolute seek by percentage
queue_seek(mpctx, MPSEEK_FACTOR, v / 100.0, precision, false);
set_osd_function(mpctx, OSD_FFW); // Direction isn't set correctly
} else {