1
mirror of https://github.com/mpv-player/mpv synced 2024-11-03 03:19:24 +01:00

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.
This commit is contained in:
wm4 2013-02-17 20:29:07 +01:00
parent 5ce8acbca3
commit a55a61762e

View File

@ -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);