src/fixedt.h
branchgamebalance
changeset 9898 324dad59eb35
parent 9887 3d32aa4ae67c
--- a/src/fixedt.h	Mon Mar 19 14:05:08 2007 +0000
+++ b/src/fixedt.h	Mon Mar 19 19:52:26 2007 +0000
@@ -76,10 +76,10 @@
 
 private:
 	/** The largest number we can hold */
-	static const int64 m_maximum = +(1ULL << ((sizeof(Tstorage) * 8) - Tdec_bits - 1)) - 1;
+	static const int64 m_maximum = +(1LL << ((sizeof(Tstorage) * 8) - Tdec_bits - 1)) - 1;
 
 	/** The smallest number we can hold */
-	static const int64 m_minimum = -(1ULL << ((sizeof(Tstorage) * 8) - Tdec_bits - 1)) - 0;
+	static const int64 m_minimum = -(1LL << ((sizeof(Tstorage) * 8) - Tdec_bits - 1)) - 0;
 };
 
 /* forward-declare some structs */