mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Fixup lv2_file::file_view::read() regression
This commit is contained in:
parent
c1607d14dc
commit
989b353fbd
1 changed files with 1 additions and 1 deletions
|
@ -648,7 +648,7 @@ struct lv2_file::file_view : fs::file_base
|
|||
|
||||
u64 read(void* buffer, u64 size) override
|
||||
{
|
||||
const u64 result = m_file->file.read_at(m_pos, buffer, size);
|
||||
const u64 result = file_view::read_at(m_pos, buffer, size);
|
||||
|
||||
m_pos += result;
|
||||
return result;
|
||||
|
|
Loading…
Add table
Reference in a new issue