diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-05-09 20:23:16 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-05-09 20:23:16 +0100 |
commit | 5ce8343bcced9e92ab2b3c1b80382cffa0281629 (patch) | |
tree | 95ce2dbe8dc976cab987d76f8e964a2efc6c23fd /NorthstarDedicatedTest/scriptmainmenupromos.cpp | |
parent | 180470cf75f40bed9c24b22d0afd68871d40c9f3 (diff) | |
download | NorthstarLauncher-5ce8343bcced9e92ab2b3c1b80382cffa0281629.tar.gz NorthstarLauncher-5ce8343bcced9e92ab2b3c1b80382cffa0281629.zip |
use lambdas for dll load callbacks so intellisense shits itself less
Diffstat (limited to 'NorthstarDedicatedTest/scriptmainmenupromos.cpp')
-rw-r--r-- | NorthstarDedicatedTest/scriptmainmenupromos.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NorthstarDedicatedTest/scriptmainmenupromos.cpp b/NorthstarDedicatedTest/scriptmainmenupromos.cpp index cb398251..0a49f491 100644 --- a/NorthstarDedicatedTest/scriptmainmenupromos.cpp +++ b/NorthstarDedicatedTest/scriptmainmenupromos.cpp @@ -129,7 +129,7 @@ SQRESULT SQ_GetCustomMainMenuPromoData(void* sqvm) return SQRESULT_NOTNULL; } -ON_DLL_LOAD_CLIENT_RELIESON("client.dll", ScriptMainMenuPrograms, ClientSquirrel, (HMODULE baseAddress) +ON_DLL_LOAD_CLIENT_RELIESON("client.dll", ScriptMainMenuPrograms, ClientSquirrel, [](HMODULE baseAddress) { g_pUISquirrel->AddFuncRegistration("void", "NSRequestCustomMainMenuPromos", "", "", SQ_RequestCustomMainMenuPromos); g_pUISquirrel->AddFuncRegistration("bool", "NSHasCustomMainMenuPromoData", "", "", SQ_HasCustomMainMenuPromoData); |