Update FindMap testsuite plugin.

Update GetMapDisplayNAme to use platform separator on CSGO
This commit is contained in:
Ross Bemrose
2015-11-06 02:38:59 -05:00
parent 625f225448
commit c8caf7c860
2 changed files with 12 additions and 8 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ public Action test_findmap( int argc )
char mapName[PLATFORM_MAX_PATH];
GetCmdArg(1, mapName, sizeof(mapName));
char resultName[16];
switch (FindMap(mapName, sizeof(mapName)))
char resultName[18];
switch (FindMap(mapName, mapName, sizeof(mapName)))
{
case FindMap_Found:
strcopy(resultName, sizeof(resultName), "Found");