Skip to content

Commit ea4db46

Browse files
Fix: Make TSDL_InitFlags a typed cuint32
1 parent c77d8a8 commit ea4db46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

units/SDL_init.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
type
5353
PPSDL_InitFlags = ^PSDL_InitFlags;
5454
PSDL_InitFlags = ^TSDL_InitFlags;
55-
TSDL_InitFlags = cuint32;
55+
TSDL_InitFlags = type cuint32;
5656

5757
const
5858
SDL_INIT_AUDIO = TSDL_InitFlags($00000010); { `SDL_INIT_AUDIO` implies `SDL_INIT_EVENTS` }

0 commit comments

Comments
 (0)