summaryrefslogtreecommitdiff
path: root/plugins/Actman30/iac_jump.pas
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Actman30/iac_jump.pas')
-rw-r--r--plugins/Actman30/iac_jump.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Actman30/iac_jump.pas b/plugins/Actman30/iac_jump.pas
index 4f4176e583..97ba3e379c 100644
--- a/plugins/Actman30/iac_jump.pas
+++ b/plugins/Actman30/iac_jump.pas
@@ -252,7 +252,7 @@ begin
if fmt<>101 then // condition
begin
StrCopy(pc,opt_condition); cond:=DBReadByte(0,DBBranch,section);
- if (cond and $F0)=0 then
+ if (cond and $0F)=0 then
flags:=flags or ACF_NOP
else
begin
@@ -281,7 +281,7 @@ begin
end
else
begin
- StrCopy(pc,'oper'); oper:=DBReadByte(0,DBBranch,section) and $0F;
+ StrCopy(pc,'action'); oper:=DBReadByte(0,DBBranch,section) and $0F;
if (oper and ADV_ACT_BREAK)<>0 then
flags:= flags or ACF_BREAK
else