diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-06-01 10:37:58 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-06-01 10:37:58 +0200 |
| commit | e5dc4d7e789e27f401cf229a11d3646d780e7a7f (patch) | |
| tree | 4a9d79454e96affa2029b26f436c9f4acbd80f27 /src | |
| parent | cd247ef6c13b718da3b891eae158fc86a67400ab (diff) | |
| download | box64-e5dc4d7e789e27f401cf229a11d3646d780e7a7f.tar.gz box64-e5dc4d7e789e27f401cf229a11d3646d780e7a7f.zip | |
Better trace for glXGetProcAddressARB
Diffstat (limited to 'src')
| -rwxr-xr-x | src/emu/x64int3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64int3.c b/src/emu/x64int3.c index e000da82..a88b45ae 100755 --- a/src/emu/x64int3.c +++ b/src/emu/x64int3.c @@ -147,7 +147,7 @@ void x64Int3(x64emu_t* emu) pu64 = (uint64_t*)R_RDI; post = 3; snprintf(buff, 255, "%04d|%p: Calling %s(%p, %zu, \"%s\" (,%p))", tid, *(void**)(R_RSP), s, (void*)R_RDI, R_RSI, (tmp)?tmp:"(nil)", (void*)(R_RCX)); - } else if(!strcmp(s, "glXGetProcAddress") || !strcmp(s, "SDL_GL_GetProcAddress")) { + } else if(!strcmp(s, "glXGetProcAddress") || !strcmp(s, "SDL_GL_GetProcAddress") || !strcmp(s, "glXGetProcAddressARB")) { tmp = (char*)(R_RDI); snprintf(buff, 255, "%04d|%p: Calling %s(\"%s\")", tid, *(void**)(R_RSP), s, (tmp)?tmp:"(nil)"); } else if(!strcmp(s, "glGetStringi")) { |