This commit is contained in:
Glenn Maynard
2006-02-04 02:36:14 +00:00
parent 9f95825bd1
commit b76358d6cf
+4 -4
View File
@@ -575,7 +575,7 @@ static RString GetVideoDriverName()
#elif defined(_XBOX) #elif defined(_XBOX)
return "Xbox"; return "Xbox";
#else #else
return "OpenGL"; return "OpenGL";
#endif #endif
} }
@@ -968,7 +968,7 @@ int main(int argc, char* argv[])
// Create game objects // Create game objects
// //
LUA = new LuaManager; LUA = new LuaManager;
GAMESTATE = new GameState; GAMESTATE = new GameState;
/* This requires PREFSMAN, for PREFSMAN->m_bShowLoadingWindow. */ /* This requires PREFSMAN, for PREFSMAN->m_bShowLoadingWindow. */
@@ -1021,12 +1021,12 @@ int main(int argc, char* argv[])
INPUTMAPPER = new InputMapper; INPUTMAPPER = new InputMapper;
INPUTQUEUE = new InputQueue; INPUTQUEUE = new InputQueue;
SONGINDEX = new SongCacheIndex; SONGINDEX = new SongCacheIndex;
BANNERCACHE = new BannerCache; BANNERCACHE = new BannerCache;
/* depends on SONGINDEX: */ /* depends on SONGINDEX: */
SONGMAN = new SongManager(); SONGMAN = new SongManager();
SONGMAN->InitAll( loading_window ); // this takes a long time SONGMAN->InitAll( loading_window ); // this takes a long time
CRYPTMAN = new CryptManager; // need to do this before ProfileMan CRYPTMAN = new CryptManager; // need to do this before ProfileMan
MEMCARDMAN = new MemoryCardManager; MEMCARDMAN = new MemoryCardManager;
CHARMAN = new CharacterManager; CHARMAN = new CharacterManager;
PROFILEMAN = new ProfileManager; PROFILEMAN = new ProfileManager;