summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChrisK2 <spam@kalania.de>2013-10-07 00:56:11 +0200
committerChrisK2 <spam@kalania.de>2013-10-07 00:56:11 +0200
commitccdaecfc5cc53b6c6ca3f46ca37ff74a36eb58dd (patch)
tree2a77cffe650d519560a59989e1b95a9ccf54c82d
parentf3556356b79848ae54232c93aa9e404c1fde6f4d (diff)
downloadmpv-ccdaecfc5cc53b6c6ca3f46ca37ff74a36eb58dd.tar.bz2
mpv-ccdaecfc5cc53b6c6ca3f46ca37ff74a36eb58dd.tar.xz
osc: Okay, don't multiply the cache value
As expected, this is not liked.
-rw-r--r--mpvcore/lua/osc.lua6
1 files changed, 1 insertions, 5 deletions
diff --git a/mpvcore/lua/osc.lua b/mpvcore/lua/osc.lua
index 7a5c582e1a..4b7c21abad 100644
--- a/mpvcore/lua/osc.lua
+++ b/mpvcore/lua/osc.lua
@@ -963,11 +963,7 @@ function osc_init()
if not (cache == nil) then
cache = tonumber(mp.property_get("cache"))
if (cache < 48) then
- if not (user_opts.iAmAProgrammer) then
- ass:append("Cache: " .. (cache*2) .."%")
- else
- ass:append("Cache: " .. (cache) .."%")
- end
+ ass:append("Cache: " .. (cache) .."%")
end
end
end