about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-10-31 10:43:02 +0100
committerptitSeb <sebastien.chev@gmail.com>2024-10-31 10:43:02 +0100
commit63e35941e233c607398dfd5bb49c74452dd538ad (patch)
tree5e2b8a9b224f6d13efacab78ff88dc3ff3dc00e5 /src
parent3ae69926413642a645a260f4b4e21253988186e1 (diff)
downloadbox64-63e35941e233c607398dfd5bb49c74452dd538ad.tar.gz
box64-63e35941e233c607398dfd5bb49c74452dd538ad.zip
Small (probably cosmetic) fix for CloneEmu helper function
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64emu.c1
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);