mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-23 05:12:39 +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
|
typedef struct MousePosition
|
||||||
{
|
{
|
||||||
u32 x;
|
s32 x;
|
||||||
u32 y;
|
s32 y;
|
||||||
u32 velocityX;
|
s32 velocityX;
|
||||||
u32 velocityY;
|
s32 velocityY;
|
||||||
u32 scrollVelocityX;
|
s32 scrollVelocityX;
|
||||||
u32 scrollVelocityY;
|
s32 scrollVelocityY;
|
||||||
} MousePosition;
|
} MousePosition;
|
||||||
|
|
||||||
typedef struct HidVector
|
typedef struct HidVector
|
||||||
|
Loading…
Reference in New Issue
Block a user