diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-19 03:13:28 +0000 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-19 03:13:28 +0000 |
commit | 75b9583a6b66c09596f4c0a25188ba4d99ca34da (patch) | |
tree | 4eef5ac3c28faa511d08be350f6bc028d5ebc290 /NorthstarDedicatedTest/context.cpp | |
parent | 682a00eaac30139929b1bb179ae7f4aa1a038572 (diff) | |
download | NorthstarLauncher-75b9583a6b66c09596f4c0a25188ba4d99ca34da.tar.gz NorthstarLauncher-75b9583a6b66c09596f4c0a25188ba4d99ca34da.zip |
openssl support
Diffstat (limited to 'NorthstarDedicatedTest/context.cpp')
-rw-r--r-- | NorthstarDedicatedTest/context.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/NorthstarDedicatedTest/context.cpp b/NorthstarDedicatedTest/context.cpp index f3c0edc6..4cfa445d 100644 --- a/NorthstarDedicatedTest/context.cpp +++ b/NorthstarDedicatedTest/context.cpp @@ -1,13 +1,13 @@ #include "pch.h" #include "context.h" -const char* GetContextName(Context context) +const char* GetContextName(ScriptContex context) { - if (context == CLIENT) + if (context == ScriptContex::CLIENT) return "CLIENT"; - else if (context == SERVER) + else if (context == ScriptContex::SERVER) return "SERVER"; - else if (context == UI) + else if (context == ScriptContex::UI) return "UI"; return ""; |