diff options
author | Maya <malte.hoermeyer@web.de> | 2022-07-22 00:56:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-22 00:56:44 +0200 |
commit | 286cea5f6280e568f5cb4c953d93993c98625ce4 (patch) | |
tree | 130245c6574890e16a5443f8b3d6e2f6b1f5abc1 /NorthstarDedicatedTest/scriptjson.cpp | |
parent | 938d89713eb055340b5e8866de3000b61e4a0f13 (diff) | |
download | NorthstarLauncher-286cea5f6280e568f5cb4c953d93993c98625ce4.tar.gz NorthstarLauncher-286cea5f6280e568f5cb4c953d93993c98625ce4.zip |
Fix using wrong Function and wrong function offset (#222)
Diffstat (limited to 'NorthstarDedicatedTest/scriptjson.cpp')
-rw-r--r-- | NorthstarDedicatedTest/scriptjson.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NorthstarDedicatedTest/scriptjson.cpp b/NorthstarDedicatedTest/scriptjson.cpp index 220f4968..1921a429 100644 --- a/NorthstarDedicatedTest/scriptjson.cpp +++ b/NorthstarDedicatedTest/scriptjson.cpp @@ -245,7 +245,7 @@ SQRESULT ClientSq_DecodeJSON(void* sqvm) ClientSq_newTable(sqvm); return SQRESULT_NOTNULL; } - ServerSq_newTable(sqvm); + ClientSq_newTable(sqvm); for (int i = 0; i < doc.MemberCount(); i++) { |