rpcsx/rpcs3/Emu/HDD/HDD.cpp

18 lines
303 B
C++
Raw Normal View History

#include "stdafx.h"
#include "Utilities/Log.h"
#include "HDD.h"
vfsDeviceHDD::vfsDeviceHDD(const std::string& hdd_path) : m_hdd_path(hdd_path)
{
}
2014-02-16 16:37:32 +01:00
vfsFileBase* vfsDeviceHDD::GetNewFileStream()
{
2014-02-16 16:37:32 +01:00
return new vfsHDD(this, m_hdd_path);
}
2014-02-16 16:37:32 +01:00
vfsDirBase* vfsDeviceHDD::GetNewDirStream()
{
return nullptr;
}