mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-21 05:53:02 +01:00
Whitespace fix
This commit is contained in:
@@ -778,9 +778,9 @@ uint32 platform_get_ticks()
|
||||
#elif defined(__APPLE__) && !defined(MACOS_SIERRA_ONWARDS)
|
||||
mach_timebase_info_data_t mach_base_info;
|
||||
kern_return_t ret = mach_timebase_info(&mach_base_info);
|
||||
if (ret == 0){
|
||||
if (ret == 0) {
|
||||
return (uint32)(((mach_absolute_time() * mach_base_info.numer) / mach_base_info.denom) / 1000000);
|
||||
} else{
|
||||
} else {
|
||||
log_fatal("Unable to get mach_timebase_info.");
|
||||
exit(-1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user