diff options
author | 2012-02-26 14:31:24 +0000 | |
---|---|---|
committer | 2012-02-26 14:31:24 +0000 | |
commit | 04145d0b62c911baab05a57e31201f3e33d73b86 (patch) | |
tree | ca6ff2ca4ac4cc1119778d0f5f8810958b165f70 /src/emu/cpu/i386 | |
parent | b46b9de8c89d233159d8f83d91de869de5af3296 (diff) |
Clean-ups and version bumpmame0145u2
Diffstat (limited to 'src/emu/cpu/i386')
-rw-r--r-- | src/emu/cpu/i386/i386.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/i386/i386.c b/src/emu/cpu/i386/i386.c index 74dc073ce76..23067e5ccc8 100644 --- a/src/emu/cpu/i386/i386.c +++ b/src/emu/cpu/i386/i386.c @@ -2097,7 +2097,7 @@ static void i386_protected_mode_retf(i386_state* cpustate, UINT8 count, UINT8 op logerror("RETF: EIP is past return CS segment limit.\n"); FAULT(FAULT_GP,0) } - + if(operand32 == 0) { ea += count+4; @@ -2110,7 +2110,7 @@ static void i386_protected_mode_retf(i386_state* cpustate, UINT8 count, UINT8 op newESP = READ32(cpustate, ea); newSS = READ32(cpustate, ea+4) & 0xffff; } - + /* Check SS selector and descriptor */ desc.selector = newSS; i386_load_protected_mode_segment(cpustate,&desc); |