summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2026-05-04 04:00:55 +1000
committer Vas Crabb <vas@vastheman.com>2026-05-04 04:00:55 +1000
commit37ee3f7cd3fbc151b80dff0d620b2cea2dfe54c0 (patch)
treeece384537fdfa4f8f8a135743c052532a09a8a1d /src/devices/cpu
parentc4a7de0fad78dac4d0399e7b1cb909ddab3ac8c1 (diff)
ui/ui.cpp: Fixed variable name auto-complete gone wrong.
Also cleaned up a bunch of recent changes.
Diffstat (limited to 'src/devices/cpu')
-rw-r--r--src/devices/cpu/i386/x87ops.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/cpu/i386/x87ops.hxx b/src/devices/cpu/i386/x87ops.hxx
index a9c53159642..8e3a988a9d7 100644
--- a/src/devices/cpu/i386/x87ops.hxx
+++ b/src/devices/cpu/i386/x87ops.hxx
@@ -2307,7 +2307,8 @@ void i386_device::x87_fprem1(uint8_t modrm)
m_x87_sw &= ~X87_SW_C2;
- if (!extFloat80_ieee754_remainder(ST(0), ST(1), result, q)) {
+ if (!extFloat80_ieee754_remainder(ST(0), ST(1), result, q))
+ {
m_x87_sw &= ~(X87_SW_C0|X87_SW_C3|X87_SW_C1);
if (q & 1)
m_x87_sw |= X87_SW_C1;