From d75f8f11e1328d36c9f32c005b54ca2e28d498c1 Mon Sep 17 00:00:00 2001 From: Matt Woodrow Date: Wed, 18 Feb 2009 19:59:14 +1300 Subject: [PATCH] Oops - FormatPath missing a param (bug 3645) --- core/GameConfigs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/GameConfigs.cpp b/core/GameConfigs.cpp index 4895d914..0087a380 100644 --- a/core/GameConfigs.cpp +++ b/core/GameConfigs.cpp @@ -748,7 +748,7 @@ bool CGameConfig::Reparse(char *error, size_t maxlength) } /* Parse the contents of the 'custom' directory */ - g_SourceMod.BuildPath(Path_SM, path, sizeof(path), "gamedata/%s/custom"); + g_SourceMod.BuildPath(Path_SM, path, sizeof(path), "gamedata/%s/custom", m_File); IDirectory *customDir = g_LibSys.OpenDirectory(path); if (!customDir)