Skip to content

Commit

Permalink
WinRT: removed some old debugging code from SDL_mutexP and SDL_mutexV
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLudwig committed Aug 21, 2013
1 parent dcb1689 commit 73dfcdc
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/thread/stdcpp/SDL_sysmutex.cpp
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 73dfcdc

Please sign in to comment.