diff options
Diffstat (limited to 'NorthstarDLL/scripts/client')
-rw-r--r-- | NorthstarDLL/scripts/client/scriptbrowserhooks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NorthstarDLL/scripts/client/scriptbrowserhooks.cpp b/NorthstarDLL/scripts/client/scriptbrowserhooks.cpp index 1462e57f..86b4a356 100644 --- a/NorthstarDLL/scripts/client/scriptbrowserhooks.cpp +++ b/NorthstarDLL/scripts/client/scriptbrowserhooks.cpp @@ -20,5 +20,5 @@ ON_DLL_LOAD_CLIENT("engine.dll", ScriptExternalBrowserHooks, (CModule module)) { AUTOHOOK_DISPATCH() - bIsOriginOverlayEnabled = module.Offset(0x13978255).As<bool*>(); + bIsOriginOverlayEnabled = module.Offset(0x13978255).RCast<bool*>(); } |