From aa87d7901e6a091b425a2c7938822a83f9087ff4 Mon Sep 17 00:00:00 2001 From: Blue Fox Date: Mon, 18 Jul 2022 18:17:28 +0200 Subject: [PATCH] Removed some wrong code --- memorytrainer.app.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/memorytrainer.app.js b/memorytrainer.app.js index 2f5bd11..20aaccc 100644 --- a/memorytrainer.app.js +++ b/memorytrainer.app.js @@ -34,11 +34,6 @@ function animate100x100img_big2small(img, minscale, maxscale) { } } -function setup_wizard() { - g.clear(); - E.show -} - function welcome(new_user) { var brain_trainer_text = storage.readJSON("memorytrainer.icons.json", true).brain_trainer_text; var img_brain_trainer_text = brain_trainer_text.data; @@ -61,7 +56,7 @@ function welcome(new_user) { // now the real code begins var settings = getSettings(); -animate100x100img_big2small(storage.read("memorytrainer.img"), 0.1, 1.5); +animate100x100img_big2small(storage.read("memorytrainer.png"), 0.1, 1.5); if(settings.firstrun) { welcome(true); settings.firstrun = false;