aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/core/convar/convar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/core/convar/convar.cpp')
-rw-r--r--NorthstarDLL/core/convar/convar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/NorthstarDLL/core/convar/convar.cpp b/NorthstarDLL/core/convar/convar.cpp
index 5069192e..9aaaca66 100644
--- a/NorthstarDLL/core/convar/convar.cpp
+++ b/NorthstarDLL/core/convar/convar.cpp
@@ -31,8 +31,8 @@ void* g_pIConVar_Vtable = nullptr;
//-----------------------------------------------------------------------------
ON_DLL_LOAD("engine.dll", ConVar, (CModule module))
{
- conVarMalloc = module.Offset(0x415C20).As<ConVarMallocType>();
- conVarRegister = module.Offset(0x417230).As<ConVarRegisterType>();
+ conVarMalloc = module.Offset(0x415C20).RCast<ConVarMallocType>();
+ conVarRegister = module.Offset(0x417230).RCast<ConVarRegisterType>();
g_pConVar_Vtable = module.Offset(0x67FD28);
g_pIConVar_Vtable = module.Offset(0x67FDC8);