From 63e35941e233c607398dfd5bb49c74452dd538ad Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Thu, 31 Oct 2024 10:43:02 +0100 Subject: Small (probably cosmetic) fix for CloneEmu helper function --- src/emu/x64emu.c | 1 + 1 file changed, 1 insertion(+) 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); -- cgit 1.4.1