mirror of
https://github.com/encounter/SDL.git
synced 2025-06-03 21:21:37 +00:00
Fixed whitespace
This commit is contained in:
parent
62629c2b5d
commit
8593076da7
@ -120,7 +120,7 @@ SDL_GetTicks64(void)
|
|||||||
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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user