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 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 ""; |