From 25cd542a2c377a8de183d8a1d734366cfb76610a Mon Sep 17 00:00:00 2001 From: Aaron Culliney Date: Sat, 10 May 2014 11:20:31 -0700 Subject: [PATCH] potential bugfix for iie_dhires_on, iie_dhires_off --- src/asm386/memory.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/asm386/memory.S b/src/asm386/memory.S index 37602cb9..056e5a18 100644 --- a/src/asm386/memory.S +++ b/src/asm386/memory.S @@ -763,14 +763,14 @@ E(iie_check_ioudis) ret E(iie_dhires_on) - testl $SS_IOUDIS, SN(softswitches) - jz ram_nop + testl $SS_DHIRES, SN(softswitches) + jnz ram_nop orl $SS_DHIRES, SN(softswitches) call SN(video_redraw) ret E(iie_dhires_off) - testl $SS_IOUDIS, SN(softswitches) + testl $SS_DHIRES, SN(softswitches) jz ram_nop andl $~SS_DHIRES, SN(softswitches) call SN(video_redraw)