1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-05 17:13:36 +08:00

Small temporary fix to the KeyValues::GetString

This commit is contained in:
GAMMACASE 2023-09-16 16:52:03 +03:00 committed by Nicholas Hastings
parent 59837cbb41
commit 5ace21fa24

View File

@ -184,9 +184,8 @@ public:
float GetFloat( const char *keyName = NULL, float defaultValue = 0.0f );
inline const char *GetString( const char *keyName = NULL, const char *defaultValue = "" )
{
static char buf[ 64 ];
GetString(keyName, defaultValue, &buf[0], sizeof(buf) );
return &buf[0];
const char *buf = GetString(keyName, defaultValue, NULL, 0 );
return buf;
}
const char *GetString( const char *keyName, const char *defaultValue, char *pszOut, uint64 maxlen );
const wchar_t *GetWString( const char *keyName = NULL, const wchar_t *defaultValue = L"" );