mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-06 05:55:55 +00:00
another backport
This commit is contained in:
parent
4abebbe3b2
commit
de32fbe75e
|
@ -2504,7 +2504,9 @@ int8 CRunningScript::ProcessOneCommand()
|
||||||
uint32 ip = m_nIp;
|
uint32 ip = m_nIp;
|
||||||
if (command < ARRAY_SIZE(commands)) {
|
if (command < ARRAY_SIZE(commands)) {
|
||||||
script_assert(commands[command].id == command);
|
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);
|
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)
|
if (m_bNotFlag)
|
||||||
strcat(commandInfo, "NOT ");
|
strcat(commandInfo, "NOT ");
|
||||||
if (commands[command].position == -1)
|
if (commands[command].position == -1)
|
||||||
|
|
Loading…
Reference in a new issue