xbox updates

This commit is contained in:
Chris Danford
2003-11-13 00:39:36 +00:00
parent 5b076e16fa
commit 47def7d3dc
40 changed files with 1358 additions and 19 deletions
+4 -1
View File
@@ -293,8 +293,11 @@ void RageThread::HaltAllThreads( bool Kill )
continue;
if( ThisThreadID == (int) g_ThreadSlots[entry].threadid )
continue;
// SuspendThread( g_ThreadSlots[entry].ThreadHandle );
#ifdef _XBOX
SuspendThread( g_ThreadSlots[entry].ThreadHandle );
#else
TerminateThread( g_ThreadSlots[entry].ThreadHandle, 0 );
#endif
}
#endif
}