From 73dfcdcfe1c20738fe81c1ffa0343786cfd8224c Mon Sep 17 00:00:00 2001 From: David Ludwig Date: Tue, 20 Aug 2013 22:18:48 -0400 Subject: [PATCH] WinRT: removed some old debugging code from SDL_mutexP and SDL_mutexV --- src/thread/stdcpp/SDL_sysmutex.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/thread/stdcpp/SDL_sysmutex.cpp b/src/thread/stdcpp/SDL_sysmutex.cpp index df91a0d44b95e..f5283e4a58f86 100644 --- a/src/thread/stdcpp/SDL_sysmutex.cpp +++ b/src/thread/stdcpp/SDL_sysmutex.cpp @@ -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;