summaryrefslogtreecommitdiff
path: root/src/control
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2021-01-23 23:15:50 +0300
committerNikolay Korolev <nickvnuk@gmail.com>2021-01-23 23:16:38 +0300
commitde32fbe75ebeb0d9a880514daa17ffaf11e5faf0 (patch)
tree779bb44c7aeaa42eb5bf5f301639dad0fee90927 /src/control
parent4abebbe3b2557347c7493a9685b646159f132e49 (diff)
another backport
Diffstat (limited to 'src/control')
-rw-r--r--src/control/Script.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/control/Script.cpp b/src/control/Script.cpp
index 642ad65b..b9097b9f 100644
--- a/src/control/Script.cpp
+++ b/src/control/Script.cpp
@@ -2504,7 +2504,9 @@ int8 CRunningScript::ProcessOneCommand()
uint32 ip = m_nIp;
if (command < ARRAY_SIZE(commands)) {
script_assert(commands[command].id == command);
+ m_nIp -= 2;
sprintf(commandInfo, m_nIp >= SIZE_MAIN_SCRIPT ? "M<%5d> " : "<%6d> ", m_nIp >= SIZE_MAIN_SCRIPT ? m_nIp - SIZE_MAIN_SCRIPT : m_nIp);
+ m_nIp += 2;
if (m_bNotFlag)
strcat(commandInfo, "NOT ");
if (commands[command].position == -1)