mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
Changed types for fields in MousePosition to s32.
This commit is contained in:
parent
c542d3ab8a
commit
5d121a20b9
@ -342,12 +342,12 @@ typedef struct JoystickPosition
|
||||
|
||||
typedef struct MousePosition
|
||||
{
|
||||
u32 x;
|
||||
u32 y;
|
||||
u32 velocityX;
|
||||
u32 velocityY;
|
||||
u32 scrollVelocityX;
|
||||
u32 scrollVelocityY;
|
||||
s32 x;
|
||||
s32 y;
|
||||
s32 velocityX;
|
||||
s32 velocityY;
|
||||
s32 scrollVelocityX;
|
||||
s32 scrollVelocityY;
|
||||
} MousePosition;
|
||||
|
||||
typedef struct HidVector
|
||||
|
Loading…
Reference in New Issue
Block a user