mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
sdlayer: Disable Windows thread naming because it interferes with debugging.
git-svn-id: https://svn.eduke32.com/eduke32@5902 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
942964ec3d
commit
1d7c67fd68
1 changed files with 5 additions and 0 deletions
|
@ -409,6 +409,11 @@ int32_t main(int32_t argc, char *argv[])
|
|||
}
|
||||
#endif
|
||||
|
||||
#if defined _WIN32 && defined SDL_HINT_WINDOWS_DISABLE_THREAD_NAMING
|
||||
// Thread naming interferes with debugging using MinGW-w64's GDB.
|
||||
SDL_SetHint(SDL_HINT_WINDOWS_DISABLE_THREAD_NAMING, "1");
|
||||
#endif
|
||||
|
||||
int32_t r;
|
||||
|
||||
#ifdef USE_OPENGL
|
||||
|
|
Loading…
Reference in a new issue