mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
rFileName removed
This commit is contained in:
parent
743421881e
commit
fbc268e993
12 changed files with 60 additions and 89 deletions
|
|
@ -44,7 +44,8 @@ bool vfsFile::Remove(const std::string& path)
|
|||
bool vfsFile::Close()
|
||||
{
|
||||
m_stream.reset();
|
||||
return vfsFileBase::Close();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
u64 vfsFile::GetSize() const
|
||||
|
|
@ -74,5 +75,5 @@ u64 vfsFile::Tell() const
|
|||
|
||||
bool vfsFile::IsOpened() const
|
||||
{
|
||||
return m_stream && m_stream->IsOpened() /*&& vfsFileBase::IsOpened()*/;
|
||||
return m_stream && m_stream->IsOpened();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue