WinRT: removed some old debugging code from SDL_mutexP and SDL_mutexV

This commit is contained in:
David Ludwig 2013-08-20 22:18:48 -04:00
parent 2e2d2a0bd4
commit 6a6cc6b5e8

View file

@ -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;