FileExists() fixed

This commit is contained in:
Nekotekina 2014-07-01 16:21:55 +04:00
parent 017e44cf4d
commit 2d1409c706
4 changed files with 19 additions and 1 deletions

View file

@ -115,3 +115,8 @@ bool vfsLocalFile::IsOpened() const
{
return m_file.IsOpened() && vfsFileBase::IsOpened();
}
bool vfsLocalFile::Exists(const std::string& path)
{
return rFileExists(path);
}