浏览代码

Empty outputComputer and outputValues on Reset

ApisNecros 1 年之前
父节点
当前提交
f208369ff3
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      IntComp/Computer.js

+ 2 - 0
IntComp/Computer.js

@@ -392,6 +392,8 @@ module.exports = class Computer {
      */
     Reset() {
         this.stack = new Stack(this._initialMemory);
+        this.outputValues = null;
+        this.outputComputer = null;
     }
 
     /**