summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-07-06 00:11:57 +0200
committerwm4 <wm4@nowhere>2016-07-06 00:11:57 +0200
commit0fe62bc1d2ecdc9c562d5c09e14dc7b6e844896e (patch)
tree439e65caf3dfdb8a8fe4c83896f3b82fb334f0a1
parentd72bcc8041f1a5cc5ea92a9579aa2b07fd8b3b59 (diff)
downloadmpv-0fe62bc1d2ecdc9c562d5c09e14dc7b6e844896e.tar.bz2
mpv-0fe62bc1d2ecdc9c562d5c09e14dc7b6e844896e.tar.xz
player: it's not --force-seeking but --force-seekable
Oops. Fuck.
-rw-r--r--player/playloop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/playloop.c b/player/playloop.c
index 311bbd178d..0062a30888 100644
--- a/player/playloop.c
+++ b/player/playloop.c
@@ -189,7 +189,7 @@ static void mp_seek(MPContext *mpctx, struct seek_params seek)
if (!mpctx->demuxer->seekable) {
MP_ERR(mpctx, "Cannot seek in this file.\n");
- MP_ERR(mpctx, "You can forcibly enable it with '--force-seeking=yes'.\n");
+ MP_ERR(mpctx, "You can forcibly enable it with '--force-seekable=yes'.\n");
return;
}