windows specific patch now

This commit is contained in:
red 2026-03-02 12:18:40 -03:00
parent 1f8e47ab3e
commit cc4281d85e
2 changed files with 13 additions and 1 deletions

View file

@ -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++;

View file

@ -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;