From 6f69edcb350dda280d12c1bea87b388c787bcf5b Mon Sep 17 00:00:00 2001 From: Silica Date: Fri, 7 Jul 2017 09:05:33 +1200 Subject: [PATCH] Delete step2.lua --- step2.lua | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 step2.lua diff --git a/step2.lua b/step2.lua deleted file mode 100644 index 6c200f4..0000000 --- a/step2.lua +++ /dev/null @@ -1,25 +0,0 @@ --- Create a new color -white = Color.new(255,255,255,255) - --- Main loop -while true do - System.powerTick() - -- Draw a string on the screen - Graphics.initBlend() - Screen.clear() - Graphics.debugPrint(5, 5, "WARNING: DO NOT TURN OFF YOUR SYSTEM OR EXIT THIS APP WHILE INSTALLING", white) - Graphics.debugPrint(5, 25, "PROCEEDING WITH THE INSTALLATION WILL REPLACE FILES IN VS0!", white) - Graphics.debugPrint(5, 65, "X: Begin Installation", white) - Graphics.termBlend() - - -- Update screen (For double buffering) - Screen.flip() - - -- Check controls for exiting - if Controls.check(Controls.read(), SCE_CTRL_CROSS) then - System.deleteFile("ux0:step1done.txt") - Screen.clear() - dofile("app0:step3.lua") - end - -end \ No newline at end of file