From 94fbd3683a426066da85ba18decad0487179f1d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Fri, 12 Apr 2024 18:35:55 +0200 Subject: [PATCH] =?UTF-8?q?stats.lua:=20use=20'=E2=9E=9C'=20(U+279C)=20ins?= =?UTF-8?q?tead=20'=E2=86=92'=20(U+2192)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- player/lua/stats.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player/lua/stats.lua b/player/lua/stats.lua index ceb7bfa2cd..913e1d497d 100644 --- a/player/lua/stats.lua +++ b/player/lua/stats.lua @@ -945,7 +945,7 @@ local function add_audio(s) local merge = function(r, ro, prop) local a = r[prop] or ro[prop] local b = ro[prop] or r[prop] - return (a == b or a == nil) and a or (a .. " → " .. b) + return (a == b or a == nil) and a or (a .. " ➜ " .. b) end append(s, "", {prefix=o.nl .. o.nl .. "Audio:", nl="", indent=""})