about summary refs log tree commit diff stats
path: root/src/emu
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-09-23 19:45:13 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-09-23 19:45:13 +0200
commit7317472b5f62316e5817f9e89ae2ddf99862412d (patch)
treefa07f9df10da8400097c372289ec58094de5f6e2 /src/emu
parent9271684e5a9f356056a6038f652ec1c15ed16ed2 (diff)
downloadbox64-7317472b5f62316e5817f9e89ae2ddf99862412d.tar.gz
box64-7317472b5f62316e5817f9e89ae2ddf99862412d.zip
[BOX32][WRAPPER] More 32bits wrapped functions, and a few fixes on threads handling
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/x64emu_private.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/x64emu_private.h b/src/emu/x64emu_private.h
index f07f100e..6b6c75e7 100644
--- a/src/emu/x64emu_private.h
+++ b/src/emu/x64emu_private.h
@@ -136,13 +136,13 @@ typedef struct x64emu_s {
     int         libc_err;   // copy of errno from libc
     int         libc_herr;  // copy of h_errno from libc
     unsigned short          libctype[384];   // copy from __ctype_b address might be too high
-    const unsigned short**  ref_ctype;
+    const unsigned short*   ref_ctype;
     const unsigned short*   ctype;
     int         libctolower[384];   // copy from __ctype_b_tolower address might be too high
-    const int** ref_tolower;
+    const int*  ref_tolower;
     const int*  tolower;
     int         libctoupper[384];   // copy from __ctype_b_toupper address might be too high
-    const int** ref_toupper;
+    const int*  ref_toupper;
     const int*  toupper;
     #endif
 } x64emu_t;