aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw12x <none@none>2008-11-17 23:39:24 +0100
committerw12x <none@none>2008-11-17 23:39:24 +0100
commit363e526baa95e22bc0cdaabb140a002af0f196c6 (patch)
treef716b535029e7c3af80edba19b9e8cdf91312973
parentc95cb1003a949a706949db63a3eaace955459899 (diff)
Fixed I64FMTD define for non-microsoft compilers. This should fix phased events state not being saved on some systems.
--HG-- branch : trunk
-rw-r--r--src/shared/Common.h2
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