Fix warning: declaration shadows a local variable
parent
715e7bda22
commit
c7065bf42f
|
@ -107,8 +107,6 @@ SDL_TicksQuit(void)
|
|||
Uint64
|
||||
SDL_GetTicks64(void)
|
||||
{
|
||||
struct timeval now;
|
||||
|
||||
if (!ticks_started) {
|
||||
SDL_TicksInit();
|
||||
}
|
||||
|
@ -125,11 +123,12 @@ SDL_GetTicks64(void)
|
|||
SDL_assert(SDL_FALSE);
|
||||
return 0;
|
||||
#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));
|
||||
}
|
||||
}
|
||||
|
||||
Uint64
|
||||
SDL_GetPerformanceCounter(void)
|
||||
|
|
Loading…
Reference in New Issue