summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-02-17 20:29:07 +0100
committerwm4 <wm4@nowhere>2013-02-17 21:06:34 +0100
commita55a61762e6ab36b771b68ecac957f73ca0d30d8 (patch)
tree3e1e9af1054f83ebe4a310f6024c361f6cdcc18b /core
parent5ce8acbca3fbf0cbfe6f0250e9baf7aa5494d6b4 (diff)
downloadmpv-a55a61762e6ab36b771b68ecac957f73ca0d30d8.tar.bz2
mpv-a55a61762e6ab36b771b68ecac957f73ca0d30d8.tar.xz
mplayer: print "Cache:" instead of "C:" on the status line
Hasn't been done before because there wasn't enough space, but this changed recently.
Diffstat (limited to 'core')
-rw-r--r--core/mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/mplayer.c b/core/mplayer.c
index 779fe34d2f..febc9cfa05 100644
--- a/core/mplayer.c
+++ b/core/mplayer.c
@@ -1160,7 +1160,7 @@ static void print_status(struct MPContext *mpctx)
int cache = mp_get_cache_percent(mpctx);
if (cache >= 0)
- saddf(&line, " C: %d%%", cache);
+ saddf(&line, " Cache: %d%%", cache);
// end
write_status_line(mpctx, line);