mirror of
https://github.com/yawut/SDL.git
synced 2026-04-20 07:37:28 -05:00
WinRT: removed some old debugging code from SDL_mutexP and SDL_mutexV
This commit is contained in:
parent
5187b903b9
commit
2fda2633de
|
|
@ -65,8 +65,6 @@ extern "C"
|
|||
int
|
||||
SDL_mutexP(SDL_mutex * mutex)
|
||||
{
|
||||
SDL_threadID threadID = SDL_ThreadID();
|
||||
DWORD realThreadID = GetCurrentThreadId();
|
||||
if (mutex == NULL) {
|
||||
SDL_SetError("Passed a NULL mutex");
|
||||
return -1;
|
||||
|
|
@ -86,8 +84,6 @@ extern "C"
|
|||
int
|
||||
SDL_mutexV(SDL_mutex * mutex)
|
||||
{
|
||||
SDL_threadID threadID = SDL_ThreadID();
|
||||
DWORD realThreadID = GetCurrentThreadId();
|
||||
if (mutex == NULL) {
|
||||
SDL_SetError("Passed a NULL mutex");
|
||||
return -1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user