From 2e9622ecdb143e400192a8f6c53e64943636ad59 Mon Sep 17 00:00:00 2001 From: smf- Date: Fri, 5 Jul 2013 00:45:14 +0000 Subject: Fixes for building MAME with Visual Studio 2013 preview [smf] --- src/lib/softfloat/softfloat-macros | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/softfloat') diff --git a/src/lib/softfloat/softfloat-macros b/src/lib/softfloat/softfloat-macros index e4a059f3df8..f58a30472ac 100644 --- a/src/lib/softfloat/softfloat-macros +++ b/src/lib/softfloat/softfloat-macros @@ -368,7 +368,7 @@ INLINE void ) { bits64 z0, z1, z2; - int8 carry0, carry1; + uint8 carry0, carry1; z2 = a2 + b2; carry1 = ( z2 < a2 ); @@ -424,7 +424,7 @@ INLINE void ) { bits64 z0, z1, z2; - int8 borrow0, borrow1; + uint8 borrow0, borrow1; z2 = a2 - b2; borrow1 = ( a2 < b2 ); -- cgit v1.2.3