Ver Fonte

Fix early exit not cleaning up kana and romaji

Thomas Dy há 6 anos atrás
pai
commit
9b86f73e50
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      src/game/typing.ts

+ 2 - 2
src/game/typing.ts

@@ -296,9 +296,9 @@ namespace game {
     exit(): void {}
 
     transitionExit(): void {
+      this.kanaController.destroy();
+      this.romajiController.destroy();
       if (this.context.track !== null) {
-        this.kanaController.destroy();
-        this.romajiController.destroy();
         this.progressController!.destroy();
       }
       this.scoreController.destroy();