diff options
author | Eugene Sandulenko | 2019-11-05 00:37:35 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-11-05 00:37:35 +0100 |
commit | 8c063e95c2127c382d0ad0c5e77a83e44ef3c704 (patch) | |
tree | 80a97a1e36206644df488b2b972aef6170c033f1 | |
parent | 77ee206cd7fc5cf98861a3aa1a579e40ad3c872d (diff) | |
download | scummvm-rg350-8c063e95c2127c382d0ad0c5e77a83e44ef3c704.tar.gz scummvm-rg350-8c063e95c2127c382d0ad0c5e77a83e44ef3c704.tar.bz2 scummvm-rg350-8c063e95c2127c382d0ad0c5e77a83e44ef3c704.zip |
SCUMM HE: MBC: Fix debug output
-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 4645f30c70..c46746a580 100644 --- a/engines/scumm/he/moonbase/net_main.cpp +++ b/engines/scumm/he/moonbase/net_main.cpp @@ -394,7 +394,7 @@ void Net::remoteStartScript(int typeOfSend, int sendTypeParam, int priority, int else res += "]"; - warning("STUB: Net::remoteStartScript(%d, %d, %d, %d, ...)", typeOfSend, sendTypeParam, priority, argsCount); // PN_RemoteStartScriptCommand + debug(1, "Net::remoteStartScript(%d, %d, %d, %d, ...)", typeOfSend, sendTypeParam, priority, argsCount); // PN_RemoteStartScriptCommand remoteSendData(typeOfSend, sendTypeParam, PACKETTYPE_REMOTESTARTSCRIPT, res); } |