diff options
| author | 2013-07-05 00:45:14 +0000 | |
|---|---|---|
| committer | 2013-07-05 00:45:14 +0000 | |
| commit | 2e9622ecdb143e400192a8f6c53e64943636ad59 (patch) | |
| tree | 251b66c0bf691979c71f7852baeef450e8936757 /src/lib/softfloat | |
| parent | 80c05d71d9ec619f0a5522b6060d909acd85141b (diff) | |
Fixes for building MAME with Visual Studio 2013 preview [smf]
Diffstat (limited to 'src/lib/softfloat')
| -rw-r--r-- | src/lib/softfloat/softfloat-macros | 4 |
1 files changed, 2 insertions, 2 deletions
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 ); |
