Fixed an incorrect variable name

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401545
This commit is contained in:
Michael McKoy 2007-10-13 19:41:25 +00:00
parent 39515aa306
commit 69ee0e01b1
3 changed files with 3 additions and 3 deletions

View File

@ -544,7 +544,7 @@ LoadMaps()
decl String:mapPath[256], String:mapFile[64]; decl String:mapPath[256], String:mapFile[64];
GetConVarString(g_Cvar_Mapfile, mapFile, 64); GetConVarString(g_Cvar_Mapfile, mapFile, 64);
BuildPath(Path_SM, mapPath, sizeof(mapFile), mapFile); BuildPath(Path_SM, mapPath, sizeof(mapPath), mapFile);
fileFound = FileExists(mapPath); fileFound = FileExists(mapPath);
if (!fileFound) if (!fileFound)
{ {

View File

@ -116,7 +116,7 @@ LoadMaps()
decl String:mapPath[256], String:mapFile[64]; decl String:mapPath[256], String:mapFile[64];
GetConVarString(g_Cvar_Mapfile, mapFile, 64); GetConVarString(g_Cvar_Mapfile, mapFile, 64);
BuildPath(Path_SM, mapPath, sizeof(mapFile), mapFile); BuildPath(Path_SM, mapPath, sizeof(mapPath), mapFile);
fileFound = FileExists(mapPath); fileFound = FileExists(mapPath);
if (!fileFound) if (!fileFound)
{ {

View File

@ -536,7 +536,7 @@ LoadMaps()
decl String:mapPath[256], String:mapFile[64]; decl String:mapPath[256], String:mapFile[64];
GetConVarString(g_Cvar_File, mapFile, 64); GetConVarString(g_Cvar_File, mapFile, 64);
BuildPath(Path_SM, mapPath, sizeof(mapFile), mapFile); BuildPath(Path_SM, mapPath, sizeof(mapPath), mapFile);
fileFound = FileExists(mapPath); fileFound = FileExists(mapPath);
if (!fileFound) if (!fileFound)
{ {