From e66e99c048fb68dfea1e39375449010027ee325d Mon Sep 17 00:00:00 2001 From: camthehaxman Date: Wed, 24 Jan 2024 10:04:24 -0600 Subject: [PATCH] don't emulate a mouse click with the 3DS touch. doing so causes unintentional block removal when touch screen buttons are clicked --- src/Window_3DS.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Window_3DS.c b/src/Window_3DS.c index f53bd9cf1..cde7e79af 100644 --- a/src/Window_3DS.c +++ b/src/Window_3DS.c @@ -170,8 +170,7 @@ void Window_ProcessEvents(double delta) { u32 mods = hidKeysDown() | hidKeysHeld(); HandleButtons(mods); - - Input_SetNonRepeatable(CCMOUSE_L, mods & KEY_TOUCH); + ProcessTouchInput(mods); if (Input.RawMode) {