From c7b60698d9abf849130495a554b05809ad372685 Mon Sep 17 00:00:00 2001 From: rtm516 Date: Sat, 7 Mar 2026 17:45:49 +0000 Subject: [PATCH] We dont need to specify vector and wstring are from std --- Minecraft.Client/Gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.Client/Gui.cpp b/Minecraft.Client/Gui.cpp index bbd78c5d0..f9810a365 100644 --- a/Minecraft.Client/Gui.cpp +++ b/Minecraft.Client/Gui.cpp @@ -860,7 +860,7 @@ void Gui::render(float a, bool mouseFree, int xMouse, int yMouse) glScalef(scale, scale, 1.f); glTranslatef((float)-debugLeft, (float)-debugTop, 0.f); - std::vector lines; + vector lines; lines.push_back(ClientConstants::VERSION_STRING); lines.push_back(minecraft->fpsString);