Windows build fix

This commit is contained in:
Jack Andersen 2015-12-17 18:54:31 -10:00
parent e8449f3fdb
commit 5d56ef2cf6
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ static std::vector<HECL::SystemString> PathComponents(const HECL::SystemString&
auto it = sPath.cbegin();
if (*it == _S('/'))
{
ret.push_back("/");
ret.push_back(_S("/"));
++it;
}
HECL::SystemString comp;