diff options
author | Alexey Kulakov <panda75@bk.ru> | 2014-12-09 21:12:52 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2014-12-09 21:12:52 +0000 |
commit | f922598fe5b4e5110ae1ac1b512dd53a82e8f80d (patch) | |
tree | 6cc700f90b35d495f1e339bf332b6ad8c3b4bed1 /plugins/Actman30/iac_jump.pas | |
parent | f30f1a910db1dc900246dde59ba9ece3c3fb5146 (diff) |
Actman 30:old to new setting conversion fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@11309 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Actman30/iac_jump.pas')
-rw-r--r-- | plugins/Actman30/iac_jump.pas | 4 |
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
|