diff options
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 4cfa445d..17de66b3 100644 --- a/NorthstarDedicatedTest/context.cpp +++ b/NorthstarDedicatedTest/context.cpp @@ -1,13 +1,13 @@ #include "pch.h" #include "context.h" -const char* GetContextName(ScriptContex context) +const char* GetContextName(ScriptContext context) { - if (context == ScriptContex::CLIENT) + if (context == ScriptContext::CLIENT) return "CLIENT"; - else if (context == ScriptContex::SERVER) + else if (context == ScriptContext::SERVER) return "SERVER"; - else if (context == ScriptContex::UI) + else if (context == ScriptContext::UI) return "UI"; return ""; |