| 98 | } |
| 99 | |
| 100 | bool NextMapManager::SetNextMap(const char *map) |
| 101 | { |
| 102 | if (!g_HL2.IsMapValid(map)) |
| 103 | { |
| 104 | return false; |
| 105 | } |
| 106 | |
| 107 | sm_nextmap.SetValue(map); |
| 108 | |
| 109 | return true; |
| 110 | } |
| 111 | |
| 112 | static char g_nextMap[PLATFORM_MAX_PATH]; |
| 113 |
no test coverage detected