mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-01-22 09:01:57 -05:00
3DS: Fix can't click on on-screen keyboard in the launcher
This commit is contained in:
parent
c26fb7b162
commit
eedcc5326b
1 changed files with 2 additions and 0 deletions
|
@ -369,6 +369,8 @@ void Pointer_SetPosition(int idx, int x, int y) {
|
|||
if (x == Pointers[idx].x && y == Pointers[idx].y) return;
|
||||
/* TODO: reset to -1, -1 when pointer is removed */
|
||||
Pointers[idx].x = x; Pointers[idx].y = y;
|
||||
|
||||
if (Pointers[0].DownHook && Pointers[0].DownHook(idx)) return;
|
||||
|
||||
#ifdef CC_BUILD_TOUCH
|
||||
if (Input_TouchMode && !(touches[idx].type & TOUCH_TYPE_GUI)) return;
|
||||
|
|
Loading…
Reference in a new issue