mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 01:52:30 +00:00
fix(system/file): explicitly call System_File::Stacked::Read/Write
This commit is contained in:
parent
ca959ed618
commit
fba6fa66f0
1 changed files with 2 additions and 2 deletions
|
|
@ -581,11 +581,11 @@ bool Read(File::StreamRecord* file, void* data, int64_t offset, size_t* bytes) {
|
|||
}
|
||||
|
||||
bool Read(FileParms* parms) {
|
||||
return System_File::Read(parms->stream, parms->param, -1, &parms->size);
|
||||
return System_File::Stacked::Read(parms->stream, parms->param, -1, &parms->size);
|
||||
}
|
||||
|
||||
bool ReadP(FileParms* parms) {
|
||||
return System_File::Read(parms->stream, parms->param, parms->position, &parms->size);
|
||||
return System_File::Stacked::Read(parms->stream, parms->param, parms->position, &parms->size);
|
||||
}
|
||||
|
||||
bool RemoveDirectory(FileParms* parms) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue