Fix dumb typo.

This commit is contained in:
Unknown W. Brackets 2013-07-04 23:55:09 -07:00
parent 19c5d12885
commit 091d4ac76f

View file

@ -383,7 +383,7 @@ int MetaFileSystem::RenameFile(const std::string &from, const std::string &to)
if (MapFilePath(from, of, &osystem))
{
// If it's a relative path, it seems to always use from's filesystem.
if (to.find(':/') != to.npos)
if (to.find(":/") != to.npos)
{
if (!MapFilePath(to, rf, &rsystem))
return -1;