remove Mutex Manager and associated dead code (#44)

this does nothing
This commit is contained in:
majcosta
2022-12-19 17:43:03 -08:00
committed by GitHub
parent 12c778118e
commit 03e5fbbffd
23 changed files with 0 additions and 346 deletions
-14
View File
@@ -689,17 +689,6 @@ BOOLEAN InitializeStandardGamingPlatform(HINSTANCE hInstance, int sCommandShow)
return FALSE;
}
#ifdef JA2
FastDebugMsg("Initializing Mutex Manager");
// Initialize the Dirty Rectangle Manager
if (InitializeMutexManager() == FALSE)
{
// We were unable to initialize the game
FastDebugMsg("FAILED : Initializing Mutex Manager");
return FALSE;
}
#endif
FastDebugMsg("Initializing File Manager");
// Initialize the File Manager
if (InitializeFileManager(NULL) == FALSE)
@@ -972,9 +961,6 @@ void ShutdownStandardGamingPlatform(void)
ShutdownInputManager();
ShutdownContainers();
ShutdownFileManager();
#ifdef JA2
ShutdownMutexManager();
#endif
#ifdef EXTREME_MEMORY_DEBUGGING
DumpMemoryInfoIntoFile( "ExtremeMemoryDump.txt", FALSE );