mirror of
https://github.com/holub/mame
synced 2025-06-08 22:03:55 +03:00
chdman I64FMT fix for OSX, FreeBSD
This commit is contained in:
parent
63e253e2c5
commit
33da5e88a0
@ -36,7 +36,7 @@
|
|||||||
/* MINGW has adopted the MSVC formatting for 64-bit ints as of gcc 4.4 */
|
/* MINGW has adopted the MSVC formatting for 64-bit ints as of gcc 4.4 */
|
||||||
#if defined(__MINGW32__) || defined(_MSC_VER)
|
#if defined(__MINGW32__) || defined(_MSC_VER)
|
||||||
#define I64FMT "I64"
|
#define I64FMT "I64"
|
||||||
#elif defined(__linux__) && defined(__LP64__)
|
#elif !defined(__APPLE__) && defined(__LP64__)
|
||||||
#define I64FMT "l"
|
#define I64FMT "l"
|
||||||
#else
|
#else
|
||||||
#define I64FMT "ll"
|
#define I64FMT "ll"
|
||||||
|
Loading…
Reference in New Issue
Block a user