diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-02-24 19:18:11 +0100 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-02-24 19:18:11 +0100 |
commit | 4d9853b0ce842dfa74e8ffa8ba652a90262bc2c1 (patch) | |
tree | c8daa99dc79979e8c32cd9ca056318cc479d5f52 /src/control | |
parent | more stuff + intro fix (diff) | |
download | re3-4d9853b0ce842dfa74e8ffa8ba652a90262bc2c1.tar re3-4d9853b0ce842dfa74e8ffa8ba652a90262bc2c1.tar.gz re3-4d9853b0ce842dfa74e8ffa8ba652a90262bc2c1.tar.bz2 re3-4d9853b0ce842dfa74e8ffa8ba652a90262bc2c1.tar.lz re3-4d9853b0ce842dfa74e8ffa8ba652a90262bc2c1.tar.xz re3-4d9853b0ce842dfa74e8ffa8ba652a90262bc2c1.tar.zst re3-4d9853b0ce842dfa74e8ffa8ba652a90262bc2c1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/control/Script.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/control/Script.cpp b/src/control/Script.cpp index b167ac54..dab68e5a 100644 --- a/src/control/Script.cpp +++ b/src/control/Script.cpp @@ -704,9 +704,6 @@ int8 CRunningScript::ProcessOneCommand() int32 command = Read2BytesFromScript(&m_nIp); m_bNotFlag = (command & 0x8000); command &= 0x7FFF; - if (command >= 1000) - debug("Time: %d, Script: %s, Command: %d\n", CTheScripts::CommandsExecuted, m_abScriptName, command); - debug("IntroSomething: %d\n", CTheScripts::NumberOfIntroTextLinesThisFrame); if (command < 100) return ProcessCommands0To99(command); if (command < 200) |