diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/x64emu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/x64emu.c b/src/emu/x64emu.c index 26184ea2..5da102af 100644 --- a/src/emu/x64emu.c +++ b/src/emu/x64emu.c @@ -262,6 +262,7 @@ void CloneEmu(x64emu_t *newemu, const x64emu_t* emu) newemu->mxcsr = emu->mxcsr; newemu->quit = emu->quit; newemu->error = emu->error; + newemu->x64emu_parity_tab = emu->x64emu_parity_tab; // adapt R_RSP to new stack frame uintptr_t oldst = (uintptr_t)((emu->init_stack)?emu->init_stack:emu->context->stack); uintptr_t newst = (uintptr_t)((newemu->init_stack)?newemu->init_stack:newemu->context->stack); |