From 9cf85e4b846f6c1263f09f39ccbb5393e1536e64 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 7 Sep 2004 04:24:26 +0000 Subject: [PATCH] remove comment --- stepmania/src/arch/Threads/Threads_Win32.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/stepmania/src/arch/Threads/Threads_Win32.cpp b/stepmania/src/arch/Threads/Threads_Win32.cpp index 7f87806145..68740eade6 100644 --- a/stepmania/src/arch/Threads/Threads_Win32.cpp +++ b/stepmania/src/arch/Threads/Threads_Win32.cpp @@ -116,7 +116,6 @@ ThreadImpl *MakeThread( int (*pFunc)(void *pData), void *pData, uint64_t *piThre thread->m_pFunc = pFunc; thread->m_pData = pData; - /* XXX: does ThreadHandle need to be dup'd? */ thread->ThreadHandle = CreateThread( NULL, 0, &StartThread, thread, 0, &thread->ThreadId ); *piThreadID = (uint64_t) thread->ThreadId;