mirror of
https://github.com/shadps4-emu/ext-SDL.git
synced 2025-01-06 02:01:39 +00:00
Fixed SDL_SINT64_C typo
Apparently all the platforms we compile on have INT64_C defined? Fixes https://github.com/libsdl-org/SDL/issues/10268
This commit is contained in:
parent
90e69f81e5
commit
cad9e6ea20
@ -143,13 +143,13 @@ void *alloca(size_t);
|
|||||||
#define SDL_SINT64_C(c) INT64_C(c)
|
#define SDL_SINT64_C(c) INT64_C(c)
|
||||||
#define SDL_UINT64_C(c) UINT64_C(c)
|
#define SDL_UINT64_C(c) UINT64_C(c)
|
||||||
#elif defined(_MSC_VER)
|
#elif defined(_MSC_VER)
|
||||||
#define SDL_INT64_C(c) c ## i64
|
#define SDL_SINT64_C(c) c ## i64
|
||||||
#define SDL_UINT64_C(c) c ## ui64
|
#define SDL_UINT64_C(c) c ## ui64
|
||||||
#elif defined(__LP64__) || defined(_LP64)
|
#elif defined(__LP64__) || defined(_LP64)
|
||||||
#define SDL_INT64_C(c) c ## L
|
#define SDL_SINT64_C(c) c ## L
|
||||||
#define SDL_UINT64_C(c) c ## UL
|
#define SDL_UINT64_C(c) c ## UL
|
||||||
#else
|
#else
|
||||||
#define SDL_INT64_C(c) c ## LL
|
#define SDL_SINT64_C(c) c ## LL
|
||||||
#define SDL_UINT64_C(c) c ## ULL
|
#define SDL_UINT64_C(c) c ## ULL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user