Skip to content

Commit 092c1ef

Browse files
committed
Update SDL_systimer.c
1 parent 15f9a9d commit 092c1ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/timer/windows/SDL_systimer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ void SDL_SYS_DelayNS(Uint64 ns)
5151
Sint64 tick = ns;
5252
tick /= 100;
5353
tick *= -1;
54-
NTSYSAPI DWORD NTAPI NtDelayExecution( BOOLEAN Alertable, PLARGE_INTEGER DelayInterval );
54+
NTSYSAPI NTSTATUS NTAPI NtDelayExecution( BOOLEAN Alertable, PLARGE_INTEGER DelayInterval );
5555
NtDelayExecution(0, (PLARGE_INTEGER)&tick);
5656
}
5757

0 commit comments

Comments
 (0)