From 0f58137167829a8e743afa949a6e855df6cd708a Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 25 Mar 2023 17:26:42 +0100 Subject: [PATCH] Light symbol cleanup --- r5dev/vstdlib/keyvaluessystem.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/r5dev/vstdlib/keyvaluessystem.h b/r5dev/vstdlib/keyvaluessystem.h index 96de64bf..fa3847fa 100644 --- a/r5dev/vstdlib/keyvaluessystem.h +++ b/r5dev/vstdlib/keyvaluessystem.h @@ -5,16 +5,16 @@ class CKeyValuesSystem : public IKeyValuesSystem// VTABLE @ 0x1413AA1E8 in R5pc_r5launch_N1094_CL456479_2019_10_30_05_20_PM { public: - void RegisterSizeofKeyValues(int64_t size); - void* AllocKeyValuesMemory(int64_t size); + void RegisterSizeofKeyValues(int64_t nSize); + void* AllocKeyValuesMemory(int64_t nSize); void FreeKeyValuesMemory(void* pMem); - HKeySymbol GetSymbolForString(const char* name, bool bCreate = false); + HKeySymbol GetSymbolForString(const char* szName, bool bCreate = false); const char* GetStringForSymbol(HKeySymbol symbol); void* GetMemPool(void); // GetMemPool returns a global variable called m_pMemPool, it gets modified by AllocKeyValuesMemory and with FreeKeyValuesMemory you can see where to find it in FreeKeyValuesMemory. - void SetKeyValuesExpressionSymbol(const char* name, bool bValue); - bool GetKeyValuesExpressionSymbol(const char* name); - HKeySymbol GetSymbolForStringCaseSensitive(HKeySymbol& hCaseInsensitiveSymbol, const char* name, bool bCreate = false); + void SetKeyValuesExpressionSymbol(const char* szName, bool bValue); + bool GetKeyValuesExpressionSymbol(const char* szName); + HKeySymbol GetSymbolForStringCaseSensitive(HKeySymbol& hCaseInsensitiveSymbol, const char* szName, bool bCreate = false); // Datatypes aren't accurate. But full fill the actual byte distance. public: