From 55231bb8d3e1a4e2752ac3d444c4287eb0ca4e8b Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Fri, 6 Mar 2026 02:11:18 +0700 Subject: Remove AUTO_VAR macro and _toString function (#592) --- Minecraft.Client/TextureHolder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Minecraft.Client/TextureHolder.cpp') diff --git a/Minecraft.Client/TextureHolder.cpp b/Minecraft.Client/TextureHolder.cpp index 9cbf5c46..0f10272c 100644 --- a/Minecraft.Client/TextureHolder.cpp +++ b/Minecraft.Client/TextureHolder.cpp @@ -58,7 +58,7 @@ void TextureHolder::setForcedScale(int targetSize) //@Override wstring TextureHolder::toString() { - return L"TextureHolder{width=" + _toString(width) + L", height=" + _toString(height) + L'}'; + return L"TextureHolder{width=" + std::to_wstring(width) + L", height=" + std::to_wstring(height) + L'}'; } int TextureHolder::compareTo(const TextureHolder *other) const -- cgit v1.2.3