Fix warning: declaration shadows a local variable

main
Sylvain 2021-11-09 11:31:29 +01:00
parent 715e7bda22
commit c7065bf42f
No known key found for this signature in database
GPG Key ID: 5F87E02E5BC0939E
1 changed files with 4 additions and 5 deletions

View File

@ -107,8 +107,6 @@ SDL_TicksQuit(void)
Uint64 Uint64
SDL_GetTicks64(void) SDL_GetTicks64(void)
{ {
struct timeval now;
if (!ticks_started) { if (!ticks_started) {
SDL_TicksInit(); SDL_TicksInit();
} }
@ -125,10 +123,11 @@ SDL_GetTicks64(void)
SDL_assert(SDL_FALSE); SDL_assert(SDL_FALSE);
return 0; return 0;
#endif #endif
} else {
struct timeval now;
gettimeofday(&now, NULL);
return (Uint64)(((Sint64)(now.tv_sec - start_tv.tv_sec) * 1000) + ((now.tv_usec - start_tv.tv_usec) / 1000));
} }
gettimeofday(&now, NULL);
return (Uint64)(((Sint64)(now.tv_sec - start_tv.tv_sec) * 1000) + ((now.tv_usec - start_tv.tv_usec) / 1000));
} }
Uint64 Uint64