mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-22 23:25:40 +00:00
Add note about VS debugger silent exit
This commit is contained in:
parent
a230993c4c
commit
8a51516de0
8
README
8
README
|
@ -33,6 +33,14 @@ be exactly as they are done in the C library, with little-to-no concern for
|
||||||
names will indicate which library file the function/type/value exists in, and
|
names will indicate which library file the function/type/value exists in, and
|
||||||
everything else will be as close to the C version as technically possible.
|
everything else will be as close to the C version as technically possible.
|
||||||
|
|
||||||
|
About the Visual Studio Debugger
|
||||||
|
--------------------------------
|
||||||
|
When running C# applications under the Visual Studio debugger, native code that
|
||||||
|
names threads with the 0x406D1388 exception will silently exit. To prevent this
|
||||||
|
exception from being thrown by SDL, add this line before your SDL_Init call:
|
||||||
|
|
||||||
|
SDL.SDL_SetHint(SDL.SDL_HINT_WINDOWS_DISABLE_THREAD_NAMING, "1");
|
||||||
|
|
||||||
Roadmap
|
Roadmap
|
||||||
-------
|
-------
|
||||||
To see the current roadmap for SDL2#, visit the GitHub issues page:
|
To see the current roadmap for SDL2#, visit the GitHub issues page:
|
||||||
|
|
Loading…
Reference in a new issue