mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-02-02 14:21:10 +00:00
Fixed whitespace
This commit is contained in:
parent
62629c2b5d
commit
8593076da7
|
@ -61,7 +61,7 @@ SDL_GetTicks64(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
gettimeofday(&now, NULL);
|
gettimeofday(&now, NULL);
|
||||||
return (Uint64) (((Sint64) (now.tv_sec - start.tv_sec) * 1000) + ((now.tv_usec - start.tv_usec) / 1000));
|
return (Uint64)(((Sint64)(now.tv_sec - start.tv_sec) * 1000) + ((now.tv_usec - start.tv_usec) / 1000));
|
||||||
}
|
}
|
||||||
|
|
||||||
Uint64
|
Uint64
|
||||||
|
|
|
@ -117,10 +117,10 @@ SDL_GetTicks64(void)
|
||||||
#if HAVE_CLOCK_GETTIME
|
#if HAVE_CLOCK_GETTIME
|
||||||
struct timespec now;
|
struct timespec now;
|
||||||
clock_gettime(SDL_MONOTONIC_CLOCK, &now);
|
clock_gettime(SDL_MONOTONIC_CLOCK, &now);
|
||||||
return (Uint64) (((Sint64) (now.tv_sec - start_ts.tv_sec) * 1000) + ((now.tv_nsec - start_ts.tv_nsec) / 1000000));
|
return (Uint64)(((Sint64)(now.tv_sec - start_ts.tv_sec) * 1000) + ((now.tv_nsec - start_ts.tv_nsec) / 1000000));
|
||||||
#elif defined(__APPLE__)
|
#elif defined(__APPLE__)
|
||||||
const uint64_t now = mach_absolute_time();
|
const uint64_t now = mach_absolute_time();
|
||||||
return (Uint64) ((((now - start_mach) * mach_base_info.numer) / mach_base_info.denom) / 1000000);
|
return ((((now - start_mach) * mach_base_info.numer) / mach_base_info.denom) / 1000000);
|
||||||
#else
|
#else
|
||||||
SDL_assert(SDL_FALSE);
|
SDL_assert(SDL_FALSE);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -128,7 +128,7 @@ SDL_GetTicks64(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
gettimeofday(&now, NULL);
|
gettimeofday(&now, NULL);
|
||||||
return (Uint64) (((Sint64) (now.tv_sec - start_tv.tv_sec) * 1000) + ((now.tv_usec - start_tv.tv_usec) / 1000));
|
return (Uint64)(((Sint64)(now.tv_sec - start_tv.tv_sec) * 1000) + ((now.tv_usec - start_tv.tv_usec) / 1000));
|
||||||
}
|
}
|
||||||
|
|
||||||
Uint64
|
Uint64
|
||||||
|
@ -223,10 +223,10 @@ SDL_Delay(Uint32 ms)
|
||||||
now = SDL_GetTicks64();
|
now = SDL_GetTicks64();
|
||||||
elapsed = (now - then);
|
elapsed = (now - then);
|
||||||
then = now;
|
then = now;
|
||||||
if (elapsed >= ((Uint64) ms)) {
|
if (elapsed >= ((Uint64)ms)) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
ms -= (Uint32) elapsed;
|
ms -= (Uint32)elapsed;
|
||||||
tv.tv_sec = ms / 1000;
|
tv.tv_sec = ms / 1000;
|
||||||
tv.tv_usec = (ms % 1000) * 1000;
|
tv.tv_usec = (ms % 1000) * 1000;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue