diff --git a/mk/windoze/glest_editor.vcproj b/mk/windoze/glest_editor.vcproj index 315481bc7..4b430439c 100755 --- a/mk/windoze/glest_editor.vcproj +++ b/mk/windoze/glest_editor.vcproj @@ -40,7 +40,7 @@ + + diff --git a/source/shared_lib/sources/platform/common/simple_threads.cpp b/source/shared_lib/sources/platform/common/simple_threads.cpp index 957f28eb4..0c1ee7b7b 100644 --- a/source/shared_lib/sources/platform/common/simple_threads.cpp +++ b/source/shared_lib/sources/platform/common/simple_threads.cpp @@ -190,7 +190,7 @@ void FileCRCPreCacheThread::execute() { //if(SystemFlags::getSystemSettingType(SystemFlags::debugSystem).enabled) SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] cached CRC value for Tech [%s] is [%d] took %.3f seconds.\n",__FILE__,__FUNCTION__,__LINE__,techName.c_str(),techCRC,difftime(time(NULL),elapsedTime)); vector results; - for(int idx = 0; idx < techDataPaths.size(); idx++) { + for(unsigned int idx = 0; idx < techDataPaths.size(); idx++) { string &techPath = techDataPaths[idx]; endPathWithSlash(techPath); findAll(techPath + techName + "/factions/*.", results, false, false);