diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-07-25 04:46:30 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-07-25 04:46:30 +0100 |
commit | bb2caa078c64e2207482806da891c37e75551faf (patch) | |
tree | 4a3e762562733b94619b3deb19ac6f4ce95024bc /NorthstarDedicatedTest | |
parent | 153e7f564c4bb1d5da200f2aecdca7c8d1836997 (diff) | |
download | NorthstarLauncher-bb2caa078c64e2207482806da891c37e75551faf.tar.gz NorthstarLauncher-bb2caa078c64e2207482806da891c37e75551faf.zip |
missed a semicolon
Diffstat (limited to 'NorthstarDedicatedTest')
-rw-r--r-- | NorthstarDedicatedTest/squirrel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NorthstarDedicatedTest/squirrel.cpp b/NorthstarDedicatedTest/squirrel.cpp index d999ef0d..addb8862 100644 --- a/NorthstarDedicatedTest/squirrel.cpp +++ b/NorthstarDedicatedTest/squirrel.cpp @@ -125,7 +125,7 @@ template<Context context> void* CreateNewVMHook(void* a1, Context realContext) if (realContext == UI) g_UISquirrelManager->VMCreated(sqvm); else - g_ClientSquirrelManager->VMCreated(sqvm) + g_ClientSquirrelManager->VMCreated(sqvm); } else if (context == SERVER) { |