| 77 | } |
| 78 | |
| 79 | u64 PFS0::ReadFromFile(const u32 idx, const u64 offset, const u64 size, void *read_buf) { |
| 80 | return this->exp->ReadFile(this->path, (this->header_size + this->files[idx].entry.offset + offset), size, read_buf); |
| 81 | } |
| 82 | |
| 83 | std::vector<std::string> PFS0::GetFiles() { |
| 84 | std::vector<std::string> file_names; |
no test coverage detected