Fixed an incorrect variable name
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401545
This commit is contained in:
parent
39515aa306
commit
69ee0e01b1
@ -544,7 +544,7 @@ LoadMaps()
|
||||
|
||||
decl String:mapPath[256], String: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);
|
||||
if (!fileFound)
|
||||
{
|
||||
|
@ -116,7 +116,7 @@ LoadMaps()
|
||||
|
||||
decl String:mapPath[256], String: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);
|
||||
if (!fileFound)
|
||||
{
|
||||
|
@ -536,7 +536,7 @@ LoadMaps()
|
||||
|
||||
decl String:mapPath[256], String: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);
|
||||
if (!fileFound)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user