summaryrefslogtreecommitdiff
path: root/dalos-binaryops.lua
diff options
context:
space:
mode:
Diffstat (limited to 'dalos-binaryops.lua')
-rw-r--r--dalos-binaryops.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/dalos-binaryops.lua b/dalos-binaryops.lua
index cdc54e0..91e1d04 100644
--- a/dalos-binaryops.lua
+++ b/dalos-binaryops.lua
@@ -24,8 +24,8 @@ Operation: %l|xor|and|or|add|sub|{Binary operation that's going to occur}
Maximize: %b[No,Yes]{Check if you want to maximize the output}
]], self.op or 0, self.maximize and 1 or 0)
if accept then
- self.op = operation
- self.maximize = maximize == 1
+ self.extra.op = operation
+ self.extra.maximize = maximize == 1
self:input_change()
end
end,
@@ -82,7 +82,7 @@ Maximize: %b[No,Yes]{Check if you want to maximize the output}
local t1, r1 = self.h1:read(count)
local t2, r2 = self.h2:read(count)
- local r = self.maximize and math.max(r1, r2) or math.min(r1, r2)
+ local r = self.extra.maximize and math.max(r1, r2) or math.min(r1, r2)
self.offset = self.offset + r
if r == 0 then self.got_eof = true return 0 end
local t = {}