summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-09-13 21:00:45 +0200
committerwm4 <wm4@nowhere>2013-09-13 21:32:29 +0200
commit728816e87bf3e1b90f9572b5e9e168863c684cc0 (patch)
tree1996ed93e8c92a7dd830f6ceea51d4e98fe3232c
parent1a1504914a41bf19497f1fb17fcfea98daa5ba27 (diff)
downloadmpv-728816e87bf3e1b90f9572b5e9e168863c684cc0.tar.bz2
mpv-728816e87bf3e1b90f9572b5e9e168863c684cc0.tar.xz
mplayer: change "Playing" message printed before playback start
Change it from "Playing file." to "Playing: file". The idea is that it looks nicer without that trailing dot. (See github issue #229.)
-rw-r--r--mpvcore/mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpvcore/mplayer.c b/mpvcore/mplayer.c
index 542098b5e3..5cf2a32ed5 100644
--- a/mpvcore/mplayer.c
+++ b/mpvcore/mplayer.c
@@ -4349,7 +4349,7 @@ static void play_current_file(struct MPContext *mpctx)
ass_set_style_overrides(mpctx->ass_library, opts->ass_force_style_list);
#endif
- mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "Playing %s.\n", mpctx->filename);
+ mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "Playing: %s\n", mpctx->filename);
//============ Open & Sync STREAM --- fork cache2 ====================