mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12:00
sys_fs bugfixes
This commit is contained in:
parent
7ce45a3bae
commit
bee6b84733
7 changed files with 118 additions and 65 deletions
|
@ -43,7 +43,7 @@ bool vfsLocalDir::Open(const std::string& path)
|
|||
|
||||
bool vfsLocalDir::Create(const std::string& path)
|
||||
{
|
||||
return rMkpath(path);
|
||||
return rMkdir(path);
|
||||
}
|
||||
|
||||
bool vfsLocalDir::IsExists(const std::string& path) const
|
||||
|
@ -53,7 +53,7 @@ bool vfsLocalDir::IsExists(const std::string& path) const
|
|||
|
||||
bool vfsLocalDir::Rename(const std::string& from, const std::string& to)
|
||||
{
|
||||
return false;
|
||||
return rRename(from, to);
|
||||
}
|
||||
|
||||
bool vfsLocalDir::Remove(const std::string& path)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue