From 429a085dafb27d6a38b2591d8d1e1fa787a1530c Mon Sep 17 00:00:00 2001 From: Tropical <42101043+tropicaaal@users.noreply.github.com> Date: Sun, 22 Mar 2026 13:15:41 -0500 Subject: [PATCH] fix UITTFFont constructor --- Minecraft.Client/Platform/Common/UI/UITTFFont.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.Client/Platform/Common/UI/UITTFFont.cpp b/Minecraft.Client/Platform/Common/UI/UITTFFont.cpp index 79ca80186..c9ef6c4ff 100644 --- a/Minecraft.Client/Platform/Common/UI/UITTFFont.cpp +++ b/Minecraft.Client/Platform/Common/UI/UITTFFont.cpp @@ -3,7 +3,7 @@ #include "../../Minecraft.World/Util/PortableFileIO.h" #include "UITTFFont.h" -UITTFFont::UITTFFont(const std::string& path, S32 fallbackCharacter) { +UITTFFont::UITTFFont(const std::string& name, const std::string& path, S32 fallbackCharacter) : m_strFontName(name) { app.DebugPrintf("UITTFFont opening %s\n", path.c_str());