Changed: #877 World editor crashes on launch ...

This commit is contained in:
kervala 2010-05-11 09:31:25 +02:00
parent 690a7db4ea
commit b57d7edea3

View file

@ -280,7 +280,7 @@ struct TSetLastFolder
vector<string> folders;
str = CPath::standardizePath(str, false);
#ifdef NL_OS_WINDOWS
explode(str, "/", folders, true);
explode(str, std::string("/"), folders, true);
#else // NL_OS_WINDOW
NLMISC::splitString(str, "/", folders);
#endif // NL_OS_WINDOWS
@ -367,13 +367,13 @@ int main()
CConfigFile::CVar &filters = cf.getVar("Filters");
// store the filters
for (int i=0; i<filters.size(); ++i)
for (uint i=0; i<filters.size(); ++i)
{
Filters.push_back(filters.asString(i));
}
// add the search paths
for (int i=0; i<paths.size(); ++i)
for (uint i=0; i<paths.size(); ++i)
{
CPath::addSearchPath(paths.asString(i), true, false);
}