mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 19:28:43 +12:00
16 lines
276 B
C++
16 lines
276 B
C++
#include "stdafx.h"
|
|
#include "HDD.h"
|
|
|
|
vfsDeviceHDD::vfsDeviceHDD(const std::string& hdd_path) : m_hdd_path(hdd_path)
|
|
{
|
|
}
|
|
|
|
vfsFileBase* vfsDeviceHDD::GetNewFileStream()
|
|
{
|
|
return new vfsHDD(this, m_hdd_path);
|
|
}
|
|
|
|
vfsDirBase* vfsDeviceHDD::GetNewDirStream()
|
|
{
|
|
return nullptr;
|
|
}
|