Fix GetEventState

This commit is contained in:
gingerBill
2022-06-27 11:02:40 +01:00
parent 199dae6cd5
commit 776b48c10d

View File

@@ -477,7 +477,7 @@ DISABLE :: 0
ENABLE :: 1
GetEventState :: #force_inline proc "c" (type: EventType) -> u8 { return EventState(type, QUERY) }
GetEventState :: #force_inline proc "c" (type: EventType) -> b8 { return EventState(type, QUERY) }
@(default_calling_convention="c", link_prefix="SDL_")