From 25c0ad6067350180a904a135cd932715b61658ac Mon Sep 17 00:00:00 2001 From: Parker Hawke Date: Mon, 31 Jul 2023 12:40:08 -0400 Subject: [PATCH] Surround tickMouse() call in ORIGINAL_CODE preprocessor check --- source/App/Minecraft.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/App/Minecraft.cpp b/source/App/Minecraft.cpp index b5d895f..a5e1e7e 100644 --- a/source/App/Minecraft.cpp +++ b/source/App/Minecraft.cpp @@ -566,7 +566,9 @@ void Minecraft::update() m_pLevel->updateLights(); } +#ifndef ORIGINAL_CODE tickMouse(); +#endif m_pGameRenderer->render(m_timer.field_18); }