mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +00:00
fs:: const renaming, fs::g_tls_error stub
This commit is contained in:
parent
c2897cddd6
commit
73b108765e
33 changed files with 196 additions and 121 deletions
|
|
@ -33,14 +33,14 @@ u64 vfsLocalFile::Read(void* dst, u64 size)
|
|||
return m_file.read(dst, size);
|
||||
}
|
||||
|
||||
u64 vfsLocalFile::Seek(s64 offset, u32 mode)
|
||||
u64 vfsLocalFile::Seek(s64 offset, fsm mode)
|
||||
{
|
||||
return m_file.seek(offset, mode);
|
||||
}
|
||||
|
||||
u64 vfsLocalFile::Tell() const
|
||||
{
|
||||
return m_file.seek(0, from_cur);
|
||||
return m_file.seek(0, fsm::cur);
|
||||
}
|
||||
|
||||
bool vfsLocalFile::IsOpened() const
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue