diff options
author | w12x <none@none> | 2008-11-17 23:39:24 +0100 |
---|---|---|
committer | w12x <none@none> | 2008-11-17 23:39:24 +0100 |
commit | 363e526baa95e22bc0cdaabb140a002af0f196c6 (patch) | |
tree | f716b535029e7c3af80edba19b9e8cdf91312973 /src/shared/Common.h | |
parent | c95cb1003a949a706949db63a3eaace955459899 (diff) |
Fixed I64FMTD define for non-microsoft compilers. This should fix phased events state not being saved on some systems.
--HG--
branch : trunk
Diffstat (limited to 'src/shared/Common.h')
-rw-r--r-- | src/shared/Common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/Common.h b/src/shared/Common.h index 9bf44b78f16..d5c2eedfc5c 100644 --- a/src/shared/Common.h +++ b/src/shared/Common.h @@ -146,7 +146,7 @@ #define stricmp strcasecmp #define strnicmp strncasecmp #define I64FMT "%016llX" -#define I64FMTD "%llu" +#define I64FMTD "%I64u" #define SI64FMTD "%lld" #endif |