diff options
author | Eugene Sandulenko | 2019-10-30 06:22:47 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2019-10-30 10:19:58 +0100 |
commit | dcab6674f1c55b078bf692f7338dd8de6e637d2c (patch) | |
tree | 1fdbe743ba91b9968b0f2301b7d3d46053842dbe /engines/scumm/he | |
parent | 78958a01f80bc6dbe43c45bfd0f63092f4b49b2c (diff) | |
download | scummvm-rg350-dcab6674f1c55b078bf692f7338dd8de6e637d2c.tar.gz scummvm-rg350-dcab6674f1c55b078bf692f7338dd8de6e637d2c.tar.bz2 scummvm-rg350-dcab6674f1c55b078bf692f7338dd8de6e637d2c.zip |
SCUMM HE: MBC: Fix package sending
Diffstat (limited to 'engines/scumm/he')
-rw-r--r-- | engines/scumm/he/moonbase/net_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/he/moonbase/net_main.cpp b/engines/scumm/he/moonbase/net_main.cpp index d6443adcc4..7095912224 100644 --- a/engines/scumm/he/moonbase/net_main.cpp +++ b/engines/scumm/he/moonbase/net_main.cpp @@ -337,7 +337,7 @@ int Net::remoteSendData(int typeOfSend, int sendTypeParam, int type, byte *data, // Since I am lazy, instead of constructing the JSON object manually // I'd rather parse it Common::String res = Common::String::format( - "{\"sessionid\":%d, \"userid\":%d, \"to\":%d, \"toparam\": %d, " + "{\"sessionid\":%d, \"from\":%d, \"to\":%d, \"toparam\": %d, " "\"type\":%d, \"timestamp\": %d, \"size\": %d, \"data\": [", _sessionid, _myUserId, typeOfSend, sendTypeParam, type, g_system->getMillis(), len); |