summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/options.rst4
-rw-r--r--options/options.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index b46f5992e6..356eff7822 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -2573,8 +2573,8 @@ Screenshot
Specify the filename template used to save screenshots. The template
specifies the filename without file extension, and can contain format
specifiers, which will be substituted when taking a screenshot.
- By default the template is ``shot%n``, which results in filenames like
- ``shot0012.png`` for example.
+ By default the template is ``mpv-shot%n``, which results in filenames like
+ ``mpv-shot0012.png`` for example.
The template can start with a relative or absolute path, in order to
specify a directory location where screenshots should be saved.
diff --git a/options/options.c b/options/options.c
index 5965ae1692..23bfef5612 100644
--- a/options/options.c
+++ b/options/options.c
@@ -764,7 +764,7 @@ const struct MPOpts mp_default_opts = {
.use_embedded_fonts = 1,
.sub_fix_timing = 1,
.sub_cp = "auto",
- .screenshot_template = "shot%n",
+ .screenshot_template = "mpv-shot%n",
.hwdec_codecs = "h264,vc1,wmv3",