mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
Fixed cellFsOpen & cellFsOpendir
This commit is contained in:
parent
321d323beb
commit
bd8ff4ca11
12 changed files with 56 additions and 42 deletions
|
|
@ -3,12 +3,12 @@
|
|||
#include "vfsLocalFile.h"
|
||||
#include "vfsLocalDir.h"
|
||||
|
||||
std::shared_ptr<vfsFileBase> vfsDeviceLocalFile::GetNewFileStream()
|
||||
vfsFileBase* vfsDeviceLocalFile::GetNewFileStream()
|
||||
{
|
||||
return std::make_shared<vfsLocalFile>(this);
|
||||
return new vfsLocalFile(this);
|
||||
}
|
||||
|
||||
std::shared_ptr<vfsDirBase> vfsDeviceLocalFile::GetNewDirStream()
|
||||
vfsDirBase* vfsDeviceLocalFile::GetNewDirStream()
|
||||
{
|
||||
return std::make_shared<vfsLocalDir>(this);
|
||||
return new vfsLocalDir(this);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue