Преглед изворни кода

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;
     }
 
     /**