mirror of https://github.com/libsdl-org/SDL.git
Switched ifdef from negative to positive
This commit is contained in:
parent
97d1056e16
commit
b0e528cc88
|
|
@ -502,11 +502,11 @@ typedef Sint64 SDL_Time;
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
/* Specifically for the `long long` -- SDL-specific. */
|
/* Specifically for the `long long` -- SDL-specific. */
|
||||||
#ifndef SDL_PLATFORM_WINDOWS
|
#ifdef SDL_PLATFORM_WINDOWS
|
||||||
#define SDL_PRILL_PREFIX "ll"
|
|
||||||
#else
|
|
||||||
SDL_COMPILE_TIME_ASSERT(longlong_size64, sizeof(long long) == 8); /* using I64 for windows - make sure `long long` is 64 bits. */
|
SDL_COMPILE_TIME_ASSERT(longlong_size64, sizeof(long long) == 8); /* using I64 for windows - make sure `long long` is 64 bits. */
|
||||||
#define SDL_PRILL_PREFIX "I64"
|
#define SDL_PRILL_PREFIX "I64"
|
||||||
|
#else
|
||||||
|
#define SDL_PRILL_PREFIX "ll"
|
||||||
#endif
|
#endif
|
||||||
#ifndef SDL_PRILLd
|
#ifndef SDL_PRILLd
|
||||||
#define SDL_PRILLd SDL_PRILL_PREFIX "d"
|
#define SDL_PRILLd SDL_PRILL_PREFIX "d"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue