summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-09-13 21:36:19 +0200
committerwm4 <wm4@nowhere>2013-09-13 21:36:19 +0200
commita0cdb1ea45f01366258a4439eef20a1ab2de838b (patch)
tree4d6127e07ea18b1aea9078b2afc0d43b3643ed0b
parent728816e87bf3e1b90f9572b5e9e168863c684cc0 (diff)
downloadmpv-a0cdb1ea45f01366258a4439eef20a1ab2de838b.tar.bz2
mpv-a0cdb1ea45f01366258a4439eef20a1ab2de838b.tar.xz
mplayer: print a message when writing watch_later config for resume
-rw-r--r--mpvcore/mplayer.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mpvcore/mplayer.c b/mpvcore/mplayer.c
index 5cf2a32ed5..9fc1c0f6c5 100644
--- a/mpvcore/mplayer.c
+++ b/mpvcore/mplayer.c
@@ -875,6 +875,8 @@ void mp_write_watch_later_conf(struct MPContext *mpctx)
if (!conffile)
goto exit;
+ mp_msg(MSGT_CPLAYER, MSGL_INFO, "Saving state.\n");
+
FILE *file = fopen(conffile, "wb");
if (!file)
goto exit;