diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-05-11 15:38:06 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-05-11 15:38:06 +0100 |
commit | e82d6661912c3010ba77958fc977d8db1e7bc769 (patch) | |
tree | 632a53804b827e14ba654c906ea37f4a581b48e9 /NorthstarDedicatedTest/clientauthhooks.cpp | |
parent | c9771185a73ffb324887a85f6d2185bd14da374d (diff) | |
download | NorthstarLauncher-e82d6661912c3010ba77958fc977d8db1e7bc769.tar.gz NorthstarLauncher-e82d6661912c3010ba77958fc977d8db1e7bc769.zip |
rename g_ModManager to g_pModManager
Diffstat (limited to 'NorthstarDedicatedTest/clientauthhooks.cpp')
-rw-r--r-- | NorthstarDedicatedTest/clientauthhooks.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/NorthstarDedicatedTest/clientauthhooks.cpp b/NorthstarDedicatedTest/clientauthhooks.cpp index f1dc3f8c..4784dada 100644 --- a/NorthstarDedicatedTest/clientauthhooks.cpp +++ b/NorthstarDedicatedTest/clientauthhooks.cpp @@ -6,9 +6,6 @@ #include "masterserver.h" #include "convar.h" -typedef void (*AuthWithStryderType)(void* a1); -AuthWithStryderType AuthWithStryder; - ConVar* Cvar_ns_has_agreed_to_send_token; // mirrored in script @@ -16,6 +13,8 @@ const int NOT_DECIDED_TO_SEND_TOKEN = 0; const int AGREED_TO_SEND_TOKEN = 1; const int DISAGREED_TO_SEND_TOKEN = 2; +typedef void (*AuthWithStryderType)(void* a1); +AuthWithStryderType AuthWithStryder; void AuthWithStryderHook(void* a1) { // game will call this forever, until it gets a valid auth key |