From dfba0b2824623e1f986f4c0312d735d845b9cba6 Mon Sep 17 00:00:00 2001 From: Saurtron Date: Sat, 14 Dec 2024 12:13:48 +0100 Subject: [PATCH] Rename badly named variable. --- rts/Lua/LuaFonts.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rts/Lua/LuaFonts.cpp b/rts/Lua/LuaFonts.cpp index 87d11fece6..ea27b4caf5 100644 --- a/rts/Lua/LuaFonts.cpp +++ b/rts/Lua/LuaFonts.cpp @@ -221,8 +221,8 @@ int LuaFonts::AddFallbackFont(lua_State* L) { RECOIL_DETAILED_TRACY_ZONE; - const bool f = CFontTexture::AddFallbackFont(luaL_checkstring(L, 1)); - lua_pushboolean(L, f); + const bool res = CFontTexture::AddFallbackFont(luaL_checkstring(L, 1)); + lua_pushboolean(L, res); return 1; }