Переглянути джерело

Style: Flip `if` statement.

Pierre Wendling 2 роки тому
батько
коміт
f25b4b2774
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      src/timer/unix/SDL_systimer.c

+ 1 - 1
src/timer/unix/SDL_systimer.c

@@ -87,7 +87,7 @@ SDL_TicksInit(void)
         has_monotonic_time = SDL_TRUE;
     } else
 #elif defined(__APPLE__)
-    if (0 == mach_timebase_info(&mach_base_info)) {
+    if (mach_timebase_info(&mach_base_info) == 0) {
         has_monotonic_time = SDL_TRUE;
         start_mach = mach_absolute_time();
     } else