summaryrefslogtreecommitdiffstats
path: root/player/osd.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/osd.c')
-rw-r--r--player/osd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/player/osd.c b/player/osd.c
index a12ccaa8b1..c2af83b08c 100644
--- a/player/osd.c
+++ b/player/osd.c
@@ -243,9 +243,9 @@ static char *get_term_status_msg(struct MPContext *mpctx)
int64_t cache_size = s.fw_bytes;
if (cache_size > 0) {
if (cache_size >= 1024 * 1024) {
- saddf(&line, "+%lldMB", (long long)(cache_size / 1024 / 1024));
+ saddf(&line, "/%lldMB", (long long)(cache_size / 1024 / 1024));
} else {
- saddf(&line, "+%lldKB", (long long)(cache_size / 1024));
+ saddf(&line, "/%lldKB", (long long)(cache_size / 1024));
}
}
}