Removed the smnew macro and the call to _CrtSetDbgFlag() to get ready for

merging with the main branch.
This commit is contained in:
Shenjoku
2013-04-19 20:34:11 -07:00
parent dac4493fe5
commit 0792db752a
195 changed files with 585 additions and 598 deletions
+2 -2
View File
@@ -531,7 +531,7 @@ RageMutex::RageMutex( const RString &name ):
/* if( g_FreeMutexIDs == NULL )
{
g_FreeMutexIDs = smnew set<int>;
g_FreeMutexIDs = new set<int>;
for( int i = 0; i < MAX_MUTEXES; ++i )
g_FreeMutexIDs->insert( i );
}
@@ -555,7 +555,7 @@ RageMutex::RageMutex( const RString &name ):
g_FreeMutexIDs->erase( g_FreeMutexIDs->begin() );
if( g_MutexList == NULL )
g_MutexList = smnew vector<RageMutex*>;
g_MutexList = new vector<RageMutex*>;
g_MutexList->push_back( this );
*/