diff options
author | rrooij <rderooij685@gmail.com> | 2015-05-19 07:19:53 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-05-19 21:33:40 +0200 |
commit | 0c84f6e820315fe40c85b4bc9a375c341b16e507 (patch) | |
tree | 7b467f6f3d86d6a5813aa23f217621fff2e4fb47 /player | |
parent | e17a8550c408e3ecbe8b1d33dbab694eabe2c713 (diff) |
command: use consistent comment style
Signed-off-by: wm4 <wm4@nowhere>
Diffstat (limited to 'player')
-rw-r--r-- | player/command.c | 2 |
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 { |