mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-13 17:47:12 -04:00
3DS: Fix can't click on on-screen keyboard in the launcher
This commit is contained in:
parent
c26fb7b162
commit
eedcc5326b
@ -369,6 +369,8 @@ void Pointer_SetPosition(int idx, int x, int y) {
|
|||||||
if (x == Pointers[idx].x && y == Pointers[idx].y) return;
|
if (x == Pointers[idx].x && y == Pointers[idx].y) return;
|
||||||
/* TODO: reset to -1, -1 when pointer is removed */
|
/* TODO: reset to -1, -1 when pointer is removed */
|
||||||
Pointers[idx].x = x; Pointers[idx].y = y;
|
Pointers[idx].x = x; Pointers[idx].y = y;
|
||||||
|
|
||||||
|
if (Pointers[0].DownHook && Pointers[0].DownHook(idx)) return;
|
||||||
|
|
||||||
#ifdef CC_BUILD_TOUCH
|
#ifdef CC_BUILD_TOUCH
|
||||||
if (Input_TouchMode && !(touches[idx].type & TOUCH_TYPE_GUI)) return;
|
if (Input_TouchMode && !(touches[idx].type & TOUCH_TYPE_GUI)) return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user