From cc4281d85e7459e3749a46b5ddad6911bc6fd0c5 Mon Sep 17 00:00:00 2001 From: red <80164245+gabriel-fondato@users.noreply.github.com> Date: Mon, 2 Mar 2026 12:18:40 -0300 Subject: [PATCH] windows specific patch now --- Minecraft.Client/Common/Tutorial/ControllerTask.cpp | 8 ++++++++ Minecraft.Client/Common/Tutorial/InfoTask.cpp | 6 +++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Minecraft.Client/Common/Tutorial/ControllerTask.cpp b/Minecraft.Client/Common/Tutorial/ControllerTask.cpp index d1604dba0..c3a42120c 100644 --- a/Minecraft.Client/Common/Tutorial/ControllerTask.cpp +++ b/Minecraft.Client/Common/Tutorial/ControllerTask.cpp @@ -66,7 +66,11 @@ bool ControllerTask::isCompleted() } else { +#ifdef _WINDOWS64 bAllComplete = true; +#else + bAllComplete = false; +#endif } } iCurrent++; @@ -87,7 +91,11 @@ bool ControllerTask::isCompleted() } else { +#ifdef _WINDOWS64 bAllComplete = true; +#else + bAllComplete = false; +#endif } } iCurrent++; diff --git a/Minecraft.Client/Common/Tutorial/InfoTask.cpp b/Minecraft.Client/Common/Tutorial/InfoTask.cpp index 0657770fd..43a10357c 100644 --- a/Minecraft.Client/Common/Tutorial/InfoTask.cpp +++ b/Minecraft.Client/Common/Tutorial/InfoTask.cpp @@ -66,7 +66,11 @@ bool InfoTask::isCompleted() bool current = (*it).second; if(!current) { - if( InputManager.GetValue(pMinecraft->player->GetXboxPad(), (*it).first) > 0 || KMInput.IsKeyDown(VK_SPACE)) +#ifdef _WINDOWS64 + if (InputManager.GetValue(pMinecraft->player->GetXboxPad(), (*it).first) > 0 || KMInput.IsKeyDown(VK_SPACE)) +#else + if( InputManager.GetValue(pMinecraft->player->GetXboxPad(), (*it).first) > 0) +#endif { (*it).second = true; bAllComplete=true;