| 749 | //========================================================================== |
| 750 | |
| 751 | int FileSystem::GetFileFlags (int lump) |
| 752 | { |
| 753 | if ((size_t)lump >= NumEntries) |
| 754 | { |
| 755 | return 0; |
| 756 | } |
| 757 | |
| 758 | const auto& lump_p = FileInfo[lump]; |
| 759 | return lump_p.resfile->GetEntryFlags(lump_p.resindex) ^ lump_p.flags; |
| 760 | } |
| 761 | |
| 762 | //========================================================================== |
| 763 | // |
no test coverage detected