From 98f8d7af3cb7a10cc268a8bdd3039539b1bf90f2 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Tue, 19 Feb 2002 00:18:05 +0000 Subject: kdrive/vesa: apply vm86 patch from Juliusz --- hw/kdrive/vesa/vm86.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/hw/kdrive/vesa/vm86.c b/hw/kdrive/vesa/vm86.c index 4bb90daf2..b6f604873 100644 --- a/hw/kdrive/vesa/vm86.c +++ b/hw/kdrive/vesa/vm86.c @@ -431,13 +431,12 @@ vm86_emulate(Vm86InfoPtr vi) if(pref_rep) { if(pref_66) { regs->ecx--; - if(regs->ecx != 0) { + if(regs->ecx != 0) + goto again; + } else { + SET_16(regs->ecx, regs->ecx - 1); + if(regs->ecx & 0xFFFF != 0) goto again; - } else { - SET_16(regs->ecx, regs->ecx - 1); - if(regs->ecx & 0xFFFF != 0) - goto again; - } } } INC_IP(1); -- cgit v1.2.3