- commented out unused class instance as it caused trouble

This commit is contained in:
Mark Vejvoda
2011-03-22 19:28:47 +00:00
parent e0192be6b1
commit 2a93d22183

View File

@@ -1822,7 +1822,7 @@ int glestMain(int argc, char** argv) {
// Setup the file crc thread
std::auto_ptr<FileCRCPreCacheThread> preCacheThread;
Game preCacheThreadGame;
//Game preCacheThreadGame;
//float pingTime = Socket::getAveragePingMS("soft-haus.com");
//printf("Ping time = %f\n",pingTime);
@@ -2085,7 +2085,7 @@ int glestMain(int argc, char** argv) {
preCacheThread.reset(new FileCRCPreCacheThread());
preCacheThread->setUniqueID(__FILE__);
preCacheThread->setTechDataPaths(techDataPaths);
preCacheThread->setFileCRCPreCacheThreadCallbackInterface(&preCacheThreadGame);
//preCacheThread->setFileCRCPreCacheThreadCallbackInterface(&preCacheThreadGame);
preCacheThread->start();
}