0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

stats: fix previous commit

The previous commit included a rendering error of the "Speed:" line,
caused by incorrect copy&paste.
This commit is contained in:
wm4 2020-04-03 23:26:51 +02:00
parent 516934b233
commit f9cc29ec91

View File

@ -657,8 +657,8 @@ local function cache_stats()
nil, 0.8, 1)
speed_graph = o.prefix_sep .. speed_graph
end
append(stats, utils.format_bytes_humanized(speed) .. "/s", {prefix="Speed:", nl="",
indent=o.prefix_sep, no_prefix_markup=true, suffix=speed_graph})
append(stats, utils.format_bytes_humanized(speed) .. "/s", {prefix="Speed:",
suffix=speed_graph})
append(stats, utils.format_bytes_humanized(info["total-bytes"]),
{prefix = "Total RAM:"})