Explorar o código

Fix early exit not cleaning up kana and romaji

Thomas Dy %!s(int64=6) %!d(string=hai) anos
pai
achega
9b86f73e50
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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();