From 67d6b2692fdc00affb53c8d8f12f8a3cb29999e4 Mon Sep 17 00:00:00 2001 From: Fireblade <72758695+Firebladedoge229@users.noreply.github.com> Date: Thu, 21 May 2026 15:18:03 -0400 Subject: [PATCH] remove ability to select vita and switch skins --- Minecraft.Client/Common/UI/UIController.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Minecraft.Client/Common/UI/UIController.cpp b/Minecraft.Client/Common/UI/UIController.cpp index 951b53b0..e88f76c0 100644 --- a/Minecraft.Client/Common/UI/UIController.cpp +++ b/Minecraft.Client/Common/UI/UIController.cpp @@ -202,19 +202,19 @@ static wstring GetControlTypeSkinPath(int controlType, bool hd) case 2: skinName = L"xbox360"; break; - case 3: + case -1: skinName = L"vita"; // not implemented yet break; - case 4: + case 3: skinName = L"PS3"; break; - case 5: + case 4: skinName = L"PS4"; break; - case 6: + case 5: skinName = L"WiiU"; break; - case 7: + case -2: skinName = L"Switch"; // not implemented yet break; default: