diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-06-02 17:03:02 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-02 11:03:02 +0200 |
| commit | e4edb65c2b3e6531b23f626f4880617d13fbbb55 (patch) | |
| tree | 9a2d008e35f2b4940dafa0ed1257687f868c5bf4 /src/os | |
| parent | b49bcbf68b3bae445a95e20dedebc6efd85e55bf (diff) | |
| download | box64-e4edb65c2b3e6531b23f626f4880617d13fbbb55.tar.gz box64-e4edb65c2b3e6531b23f626f4880617d13fbbb55.zip | |
[WOW64] The name is WowBox64 (#2699)
Diffstat (limited to 'src/os')
| -rw-r--r-- | src/os/my_cpuid_wine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os/my_cpuid_wine.c b/src/os/my_cpuid_wine.c index 5a0567ec..85e8e8a8 100644 --- a/src/os/my_cpuid_wine.c +++ b/src/os/my_cpuid_wine.c @@ -2,6 +2,7 @@ #include "my_cpuid.h" #include "debug.h" +#include "build_info.h" NTSYSAPI ULONG WINAPI NtGetTickCount(VOID); NTSYSAPI ULONG NTAPI RtlRandom(ULONG *seed); @@ -24,8 +25,7 @@ int getNCpu() const char* getBoxCpuName() { - static char branding[] = "libwowbox64.dll"; - return branding; + return BOX64_STR; } uint32_t helper_getcpu(x64emu_t* emu) { |