From 469b9fcc4e4bed2301115556d51117e68e97e934 Mon Sep 17 00:00:00 2001 From: Ethan O'Brien Date: Thu, 8 Aug 2024 10:27:36 -0500 Subject: [PATCH] Fix core path --- data/src/emulator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/src/emulator.js b/data/src/emulator.js index 22b159c..1318f9e 100644 --- a/data/src/emulator.js +++ b/data/src/emulator.js @@ -570,7 +570,7 @@ class EmulatorJS { this.downloadFile(corePath, (res) => { if (res === -1) { console.log("File not found, attemping to fetch from emulatorjs cdn"); - this.downloadFile("https://cdn.emulatorjs.org/latest/data/"+corePath, (res) => { + this.downloadFile("https://cdn.emulatorjs.org/stable/data/"+corePath, (res) => { if (res === -1) { if (!this.supportsWebgl2) { this.startGameError(this.localization('Outdated graphics driver')); @@ -579,7 +579,7 @@ class EmulatorJS { } return; } - console.warn("File was not found locally, but was found on the emulatorjs cdn.\nIt is recommended to download the latest release from here: https://cdn.emulatorjs.org/releases/"); + console.warn("File was not found locally, but was found on the emulatorjs cdn.\nIt is recommended to download the stable release from here: https://cdn.emulatorjs.org/releases/"); gotCore(res.data); this.storage.core.put(filename, { version: rep.buildStart,