1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-14 07:54:15 +01:00

Update CBufferString usage

This commit is contained in:
GAMMACASE 2025-01-17 00:44:43 +03:00
parent d1866d08e7
commit 40dcdd4806

View File

@ -128,7 +128,7 @@ void Source2Provider::Notify_DLLInit_Pre(CreateInterfaceFn engineFactory,
baseFs->RemoveSearchPaths("DEFAULT_WRITE_PATH");
CBufferStringGrowable<260> searchPath;
CBufferStringN<260> searchPath;
baseFs->GetSearchPath("GAME", (GetSearchPathTypes_t)0, searchPath, 1);
baseFs->AddSearchPath(searchPath.Get(), "DEFAULT_WRITE_PATH");
@ -228,7 +228,7 @@ const char* Source2Provider::GetEngineDescription() const
void Source2Provider::GetGamePath(char* pszBuffer, int len)
{
CBufferStringGrowable<MAX_PATH> buf;
CBufferStringN<MAX_PATH> buf;
engine->GetGameDir(buf);
ke::SafeSprintf(pszBuffer, len, "%s", buf.Get());
}