| 1340 | //========================================================================== |
| 1341 | |
| 1342 | int FileSystem::GetFirstEntry (int rfnum) const noexcept |
| 1343 | { |
| 1344 | if ((uint32_t)rfnum >= Files.size()) |
| 1345 | { |
| 1346 | return 0; |
| 1347 | } |
| 1348 | |
| 1349 | return Files[rfnum]->GetFirstEntry(); |
| 1350 | } |
| 1351 | |
| 1352 | //========================================================================== |
| 1353 | // |
no test coverage detected