| 81 | } |
| 82 | |
| 83 | std::vector<std::string> PFS0::GetFiles() { |
| 84 | std::vector<std::string> file_names; |
| 85 | for(const auto &file: this->files) { |
| 86 | file_names.push_back(file.name); |
| 87 | } |
| 88 | return file_names; |
| 89 | } |
| 90 | |
| 91 | u64 PFS0::GetFileSize(const u32 idx) { |
| 92 | if(IsInvalidFileIndex(idx) || (idx >= this->files.size())) { |
no outgoing calls
no test coverage detected