diff options
Diffstat (limited to 'js/IntegerOp/INTMUL.js')
-rw-r--r-- | js/IntegerOp/INTMUL.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/IntegerOp/INTMUL.js b/js/IntegerOp/INTMUL.js index e0670d92..5bdb6a8e 100644 --- a/js/IntegerOp/INTMUL.js +++ b/js/IntegerOp/INTMUL.js @@ -30,12 +30,12 @@ function INTMUL() { return options; } INTMUL.prototype.set = function INTMUL() { - this.Datatype = arguments[0]["Datatype"] - this.np = arguments[0]["np"] - this.exprs = arguments[0]["exprs"] this.exprs = this.graphics.exprs; while (true) { - [ok,this.Datatype,this.np,this.exprs] = scicos_getvalue([[msprintf("Set %s block parameters","INTMUL")],[" "],["Integer matrix multiplication"],[" "]],[msprintf("Data Type %s","(3:int32, 4:int16, 5:int8, ...)"),"Do on Overflow (0:Nothing, 1:Saturate, 2:Error)"],list("vec",1,"vec",1),this.exprs); + var ok = true; + this.Datatype = arguments[0]["Datatype"]; + this.np = arguments[0]["np"]; + this.exprs = arguments[0]["exprs"]; if (!ok) { break; } |