about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorAndré Zwing <nerv@dawncrow.de>2025-05-25 18:23:24 +0200
committerAndré Zwing <nerv@dawncrow.de>2025-05-25 21:41:25 +0200
commita42936d9982ee88978ad2ff7d0c668f9c8c1d797 (patch)
tree5d8aa73ffb14376b6f96ba31ccb35e24af4a23af /src
parente09adad1b9db271d3f3add3abe6bf1ae3659d0aa (diff)
downloadbox64-a42936d9982ee88978ad2ff7d0c668f9c8c1d797.tar.gz
box64-a42936d9982ee88978ad2ff7d0c668f9c8c1d797.zip
[WOW64] Implement getBoxCpuName
Diffstat (limited to 'src')
-rw-r--r--src/os/my_cpuid_wine.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/os/my_cpuid_wine.c b/src/os/my_cpuid_wine.c
index 16aab3f1..791a1168 100644
--- a/src/os/my_cpuid_wine.c
+++ b/src/os/my_cpuid_wine.c
@@ -7,7 +7,8 @@ NTSYSAPI ULONG NTAPI RtlRandom(ULONG *seed);
 
 const char* getBoxCpuName()
 {
-    return NULL;
+    static char branding[] = "libwowbox64.dll";
+    return branding;
 }
 
 void my_cpuid(x64emu_t* emu, uint32_t tmp32u)