Skip to content

Commit

Permalink
Fix a missing ) in the BAND instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
WallopingEwe authored Feb 16, 2024
1 parent 255dc76 commit 9038c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/wire/zvm/zvm_opcodes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ ZVM.OpcodeTable[64] = function(self) --BAND
self:Dyn_EmitOperand("VM:BinaryAnd($1,$2)")
self:Dyn_Emit("VM.TMR = VM.TMR + 30")
self:Dyn_Emit("else")
self:Dyn_EmitOperand("VM:ClampBinaryToIPREC(bit.band($1,$2)")
self:Dyn_EmitOperand("VM:ClampBinaryToIPREC(bit.band($1,$2))")
self:Dyn_Emit("end")
end
ZVM.OpcodeTable[65] = function(self) --BOR
Expand Down

0 comments on commit 9038c87

Please sign in to comment.