Skip to content

Commit 5c54cc5

Browse files
committed
Convert TSDL_TouchID and TSDL_FingerID from SInt32 aliases to separate integer types
1 parent 7b53312 commit 5c54cc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdltouch.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
type
44
PSDL_TouchID = ^TSDL_TouchID;
5-
TSDL_TouchID = SInt64;
5+
TSDL_TouchID = type SInt64;
66

77
PSDL_FingerID = ^TSDL_FingerID;
8-
TSDL_FingerID = SInt64;
8+
TSDL_FingerID = type SInt64;
99

1010
PSDL_Finger = ^TSDL_Finger;
1111
TSDL_Finger = record

0 commit comments

Comments
 (0)