mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
Improved VFS
- Implemended vfsDir. - Improved vfsDevice. - Improved vfsFile.
This commit is contained in:
parent
5d59dae730
commit
321d323beb
36 changed files with 479 additions and 390 deletions
|
@ -50,8 +50,10 @@ void GameViewer::LoadPSF()
|
|||
for(uint i=0; i<m_games.GetCount(); ++i)
|
||||
{
|
||||
const wxString& path = m_path + m_games[i] + "\\PARAM.SFO";
|
||||
if(!wxFileExists(path)) continue;
|
||||
vfsLocalFile f(path);
|
||||
vfsLocalFile f(nullptr);
|
||||
if(!f.Open(path))
|
||||
continue;
|
||||
|
||||
PSFLoader psf(f);
|
||||
if(!psf.Load(false)) continue;
|
||||
psf.m_info.root = m_games[i];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue