ソースを参照

Fixed windows compile

Sam Lantinga 11 年 前
コミット
aa86e05d21
2 ファイル変更3 行追加1 行削除
  1. 2 0
      WhatsNew.txt
  2. 1 1
      src/haptic/windows/SDL_syshaptic.c

+ 2 - 0
WhatsNew.txt

@@ -1,3 +1,5 @@
 
 This is a list of API changes in SDL's version history.
 
+2.0.1
+* 

+ 1 - 1
src/haptic/windows/SDL_syshaptic.c

@@ -1567,7 +1567,7 @@ SDL_RunXInputHaptic(void *arg)
         SDL_LockMutex(hwdata->mutex);
         /* If we're currently running and need to stop... */
         if (hwdata->stopTicks) {
-            if ((hwdata->stopTicks != SDL_HAPTIC_INFINITY) && SDL_TIMESTAMP_PASSED(SDL_GetTicks(), hwdata->stopTicks)) {
+            if ((hwdata->stopTicks != SDL_HAPTIC_INFINITY) && SDL_TICKS_PASSED(SDL_GetTicks(), hwdata->stopTicks)) {
                 XINPUT_VIBRATION vibration = { 0, 0 };
                 hwdata->stopTicks = 0;
                 XINPUTSETSTATE(hwdata->userid, &vibration);