mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 23:45:12 +00:00
Fixed cellFsOpen & cellFsOpendir
This commit is contained in:
parent
321d323beb
commit
bd8ff4ca11
12 changed files with 56 additions and 42 deletions
|
|
@ -18,7 +18,7 @@ bool vfsFile::Open(const wxString& path, vfsOpenMode mode)
|
|||
{
|
||||
Close();
|
||||
|
||||
m_stream = Emu.GetVFS().OpenFile(path, mode);
|
||||
m_stream.reset(Emu.GetVFS().OpenFile(path, mode));
|
||||
|
||||
return m_stream && m_stream->IsOpened();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue