| 1071 | //========================================================================== |
| 1072 | |
| 1073 | std::string FileSystem::GetFileFullPath(int lump) const |
| 1074 | { |
| 1075 | std::string foo; |
| 1076 | |
| 1077 | if ((size_t) lump < NumEntries) |
| 1078 | { |
| 1079 | foo = GetResourceFileName(FileInfo[lump].rfnum); |
| 1080 | foo += ':'; |
| 1081 | foo += +GetFileFullName(lump); |
| 1082 | } |
| 1083 | return foo; |
| 1084 | } |
| 1085 | |
| 1086 | //========================================================================== |
| 1087 | // |
no outgoing calls
no test coverage detected