about summary refs log tree commit diff stats
path: root/018jump_disp32.cc
diff options
context:
space:
mode:
Diffstat (limited to '018jump_disp32.cc')
-rw-r--r--018jump_disp32.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/018jump_disp32.cc b/018jump_disp32.cc
index c39da70e..4166fb60 100644
--- a/018jump_disp32.cc
+++ b/018jump_disp32.cc
@@ -168,7 +168,7 @@ case 0x8f: {  // jump disp32 if !SF and !ZF
   break;
 }
 case 0x87: {  // jump disp32 if !CF and !ZF
-  const int32_t offset = next();
+  const int32_t offset = next32();
   if (!CF && !ZF) {
     trace(Callstack_depth+1, "run") << "jump " << offset << end();
     EIP += offset;