rpcsx/rpcs3/Emu/HDD/HDD.cpp
DH 321d323beb Improved VFS
- Implemended vfsDir.
- Improved vfsDevice.
- Improved vfsFile.
2014-02-16 17:19:06 +02:00

17 lines
322 B
C++

#include "stdafx.h"
#include "HDD.h"
vfsDeviceHDD::vfsDeviceHDD(const std::string& hdd_path) : m_hdd_path(hdd_path)
{
}
std::shared_ptr<vfsFileBase> vfsDeviceHDD::GetNewFileStream()
{
return std::make_shared<vfsHDD>(this, m_hdd_path);
}
std::shared_ptr<vfsDirBase> vfsDeviceHDD::GetNewDirStream()
{
return nullptr;
}