From bd526059f7693f8c9d1f218835c129aa595d724c Mon Sep 17 00:00:00 2001 From: "Eevee (Evelyn Woods)" Date: Sat, 5 Sep 2020 17:11:34 -0600 Subject: [PATCH] Unbreak opening CCLP1 (oops) --- js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index f7e084a..b14c3a8 100644 --- a/js/main.js +++ b/js/main.js @@ -1601,7 +1601,7 @@ class Splash extends PrimaryView { // TODO indicate we're downloading something // TODO handle errors // TODO cancel a download if we start another one? - let data = await fetch(path); + let buf = await fetch(path); let stored_game; this.load_file(buf); // TODO get title out of C2G when it's supported