summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--player/lua/stats.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/player/lua/stats.lua b/player/lua/stats.lua
index 17a71cc298..19d1848dd5 100644
--- a/player/lua/stats.lua
+++ b/player/lua/stats.lua
@@ -545,7 +545,9 @@ local function add_video(s)
append(s, r["h"], {prefix="x", nl="", indent=" ", prefix_sep=" ", no_prefix_markup=true})
end
append_property(s, "current-window-scale", {prefix="Window Scale:"})
- append(s, format("%.2f", r["aspect"]), {prefix="Aspect Ratio:"})
+ if r["aspect"] ~= nil then
+ append(s, format("%.2f", r["aspect"]), {prefix="Aspect Ratio:"})
+ end
append(s, r["pixelformat"], {prefix="Pixel Format:"})
-- Group these together to save vertical space