| 1036 | //========================================================================== |
| 1037 | |
| 1038 | const char* FileSystem::GetFileShortName(int lump) const |
| 1039 | { |
| 1040 | if ((size_t)lump >= NumEntries) |
| 1041 | return nullptr; |
| 1042 | else |
| 1043 | return FileInfo[lump].shortName.String; |
| 1044 | } |
| 1045 | |
| 1046 | //========================================================================== |
| 1047 | // |
no outgoing calls
no test coverage detected