mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
* use one central unified log with channels/priorities ad-hoc listener registration and de-registration * disable buffering by default * add multi-threaded ringbuffer implementation * use buffered listener for the gui (using the ringbuffer)
18 lines
303 B
C++
18 lines
303 B
C++
#include "stdafx.h"
|
|
#include "Utilities/Log.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;
|
|
}
|