mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
14 lines
278 B
C++
14 lines
278 B
C++
#include "stdafx.h"
|
|
#include "vfsDeviceLocalFile.h"
|
|
#include "vfsLocalFile.h"
|
|
#include "vfsLocalDir.h"
|
|
|
|
vfsFileBase* vfsDeviceLocalFile::GetNewFileStream()
|
|
{
|
|
return new vfsLocalFile(this);
|
|
}
|
|
|
|
vfsDirBase* vfsDeviceLocalFile::GetNewDirStream()
|
|
{
|
|
return new vfsLocalDir(this);
|
|
}
|