mirror of
https://github.com/holub/mame
synced 2025-04-24 01:11:11 +03:00
Fix I64FMT in chdman for Linux 64 bit
This commit is contained in:
parent
df00bf568f
commit
63e253e2c5
@ -36,6 +36,8 @@
|
||||
/* MINGW has adopted the MSVC formatting for 64-bit ints as of gcc 4.4 */
|
||||
#if defined(__MINGW32__) || defined(_MSC_VER)
|
||||
#define I64FMT "I64"
|
||||
#elif defined(__linux__) && defined(__LP64__)
|
||||
#define I64FMT "l"
|
||||
#else
|
||||
#define I64FMT "ll"
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user