Explorar o código

explicit cast to int in SDL_bits

Andrei Rafael Brongel hai 1 ano
pai
achega
86ef790a23
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      include/SDL3/SDL_bits.h

+ 1 - 1
include/SDL3/SDL_bits.h

@@ -85,7 +85,7 @@ SDL_FORCE_INLINE int SDL_MostSignificantBitIndex32(Uint32 x)
 #elif defined(_MSC_VER)
     unsigned long index;
     if (_BitScanReverse(&index, x)) {
-        return index;
+        return (int)index;
     }
     return -1;
 #else