summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/softfloat
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2010-03-11 19:37:17 +0000
committer smf- <smf-@users.noreply.github.com>2010-03-11 19:37:17 +0000
commitc8505e392ca04207d74074e249e5b838942d4a0b (patch)
tree0e93d127fabd011040f375e27f34e8af7a2ea11a /src/lib/softfloat
parent46e57788e0091d2b4806b22f50d42fb277be0e52 (diff)
fixed msvc warnings
Diffstat (limited to 'src/lib/softfloat')
-rw-r--r--src/lib/softfloat/mamesf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/softfloat/mamesf.h b/src/lib/softfloat/mamesf.h
index 8bd718f643a..077077ee087 100644
--- a/src/lib/softfloat/mamesf.h
+++ b/src/lib/softfloat/mamesf.h
@@ -56,7 +56,7 @@ typedef INT64 sbits64;
| name for the 64-bit integer type. Some compilers may allow `LIT64' to be
| defined as the identity macro: `#define LIT64( a ) a'.
*----------------------------------------------------------------------------*/
-#define LIT64( a ) a##LL
+#define LIT64( a ) a##ULL
/*----------------------------------------------------------------------------
| The macro `INLINE' can be used before functions that should be inlined. If