mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
Improved VFS
- Implemended vfsDir. - Improved vfsDevice. - Improved vfsFile.
This commit is contained in:
parent
5d59dae730
commit
321d323beb
36 changed files with 479 additions and 390 deletions
14
rpcs3/Emu/FS/vfsDeviceLocalFile.cpp
Normal file
14
rpcs3/Emu/FS/vfsDeviceLocalFile.cpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#include "stdafx.h"
|
||||
#include "vfsDeviceLocalFile.h"
|
||||
#include "vfsLocalFile.h"
|
||||
#include "vfsLocalDir.h"
|
||||
|
||||
std::shared_ptr<vfsFileBase> vfsDeviceLocalFile::GetNewFileStream()
|
||||
{
|
||||
return std::make_shared<vfsLocalFile>(this);
|
||||
}
|
||||
|
||||
std::shared_ptr<vfsDirBase> vfsDeviceLocalFile::GetNewDirStream()
|
||||
{
|
||||
return std::make_shared<vfsLocalDir>(this);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue