From 23cc62e1437ddae3cbde3b86f0eb163a03387213 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com> Date: Thu, 24 Aug 2023 23:33:38 +0100 Subject: [PATCH] version: re-release 0.9.14 --- frontends/web/ts/gb.ts | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/frontends/web/ts/gb.ts b/frontends/web/ts/gb.ts index b77a7474..e0a6a889 100644 --- a/frontends/web/ts/gb.ts +++ b/frontends/web/ts/gb.ts @@ -26,8 +26,7 @@ import { DebugSettings, HelpFaqs, HelpKeyboard, - SerialSection, - TestSection + SerialSection } from "../react"; import { @@ -398,8 +397,9 @@ export class GameboyEmulator extends EmulatorBase implements Emulator { // in case a remote ROM loading operation has been // requested then loads it from the remote origin if (loadRom) { - ({ name: romName, data: romData } = - await GameboyEmulator.fetchRom(romPath)); + ({ name: romName, data: romData } = await GameboyEmulator.fetchRom( + romPath + )); } else if (romName === null || romData === null) { [romName, romData] = [this.romName, this.romData]; } @@ -547,10 +547,6 @@ export class GameboyEmulator extends EmulatorBase implements Emulator { name: "Serial", icon: require("../res/serial.svg"), node: SerialSection({ emulator: this }) - }, - { - name: "Test", - node: TestSection({}) } ]; } -- GitLab