diff options
Diffstat (limited to 'js/Electrical/OpAmp.js')
-rw-r--r-- | js/Electrical/OpAmp.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/Electrical/OpAmp.js b/js/Electrical/OpAmp.js index b056b0b0..df6e5e00 100644 --- a/js/Electrical/OpAmp.js +++ b/js/Electrical/OpAmp.js @@ -35,9 +35,9 @@ function OpAmp() { return options; } OpAmp.prototype.set = function OpAmp() { - this.OLGain = parseFloat((arguments[0]["OLGain"])) - this.SatH = parseFloat((arguments[0]["SatH"])) - this.SatL = parseFloat((arguments[0]["SatL"])) + this.OLGain = arguments[0]["OLGain"] + this.SatH = arguments[0]["SatH"] + this.SatL = arguments[0]["SatL"] this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; |