mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-05-30 16:40:58 +00:00
- scriptified a_spidermaster.cpp.
- fixed bad assert in XOR_RK instruction.
This commit is contained in:
parent
c961e653a5
commit
d32d52c0b9
6 changed files with 32 additions and 46 deletions
|
@ -924,7 +924,7 @@ begin:
|
|||
reg.d[a] = reg.d[B] ^ reg.d[C];
|
||||
NEXTOP;
|
||||
OP(XOR_RK):
|
||||
ASSERTD(a); ASSERTD(B); ASSERTD(C);
|
||||
ASSERTD(a); ASSERTD(B); ASSERTKD(C);
|
||||
reg.d[a] = reg.d[B] ^ konstd[C];
|
||||
NEXTOP;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue