Commit affb183ea4f6cd97fa467d64291fb79048b85a15

Ryan C. Gordon 2021-10-23T15:20:32

unix: Fixed SDL_GetTicks64 function signature.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/timer/unix/SDL_systimer.c b/src/timer/unix/SDL_systimer.c
index 067d207..ed4e4af 100644
--- a/src/timer/unix/SDL_systimer.c
+++ b/src/timer/unix/SDL_systimer.c
@@ -105,7 +105,7 @@ SDL_TicksQuit(void)
 }
 
 Uint64
-SDL_GetTicks(void)
+SDL_GetTicks64(void)
 {
     struct timeval now;