diff options
| author | 2026-05-04 04:00:55 +1000 | |
|---|---|---|
| committer | 2026-05-04 04:00:55 +1000 | |
| commit | 37ee3f7cd3fbc151b80dff0d620b2cea2dfe54c0 (patch) | |
| tree | ece384537fdfa4f8f8a135743c052532a09a8a1d /src/devices/cpu | |
| parent | c4a7de0fad78dac4d0399e7b1cb909ddab3ac8c1 (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.hxx | 3 |
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; |
