| 259 | } |
| 260 | |
| 261 | std::string HUDuiServerListCache::getCacheFilename() const { |
| 262 | std::string fileName = getCacheDirName(); |
| 263 | if (fileName == "") { return ""; } |
| 264 | std::string verString = getServerVersion(); |
| 265 | fileName += verString + "-ServerLists.bzs"; |
| 266 | return fileName; |
| 267 | } |
| 268 | |
| 269 | void HUDuiServerListCache::applySort(int index, int _sort, bool reverse) { |
| 270 | switch (_sort) { |
nothing calls this directly
no test coverage detected