From 524fbde838408d4d6591c6b35e7a24a259af4f00 Mon Sep 17 00:00:00 2001 From: Ethan O'Brien Date: Sat, 26 Mar 2022 15:29:20 -0500 Subject: [PATCH] Resolve #184 --- data/loader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/loader.js b/data/loader.js index ad5911d..d66fd2e 100644 --- a/data/loader.js +++ b/data/loader.js @@ -6,7 +6,7 @@ response.text().then(body => { var version = JSON.parse(body); if (VERSION < version.current_version) { - console.log('Using emulatorjs version ' + usingVersion + ' but the newest version is ' + version.current_version + '\nopen https://github.com/ethanaobrien/emulatorjs to update'); + console.log('Using emulatorjs version ' + VERSION + ' but the newest version is ' + version.current_version + '\nopen https://github.com/ethanaobrien/emulatorjs to update'); } }) }