Improved VFS

- Implemended vfsDir.
- Improved vfsDevice.
- Improved vfsFile.
This commit is contained in:
DH 2014-02-16 17:19:06 +02:00
parent 5d59dae730
commit 321d323beb
36 changed files with 479 additions and 390 deletions

View file

@ -162,11 +162,13 @@ bool Loader::Load()
return false;
}
/*
const wxString& root = wxFileName(wxFileName(m_stream->GetPath()).GetPath()).GetPath();
wxString ps3_path;
const wxString& psf_path = root + "\\" + "PARAM.SFO";
if(wxFileExists(psf_path))
vfsFile f(psf_path);
if(f.IsOpened())
{
vfsLocalFile f(psf_path);
PSFLoader psf_l(f);
if(psf_l.Load())
{
@ -175,6 +177,6 @@ bool Loader::Load()
psf_l.Close();
}
}
*/
return true;
}