From d522481d448f80d8532567817bcc62e78032845a Mon Sep 17 00:00:00 2001 From: Aurora Date: Sat, 19 Mar 2016 21:31:04 +0100 Subject: [PATCH] Fix derp in screen init Removed one line too much --- source/installer.c | 2 +- source/screeninit.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/source/installer.c b/source/installer.c index 1b2559c..22fc3cd 100755 --- a/source/installer.c +++ b/source/installer.c @@ -35,7 +35,7 @@ static void installStage2(u32 mode, int pos_y){ } void installer(void){ - drawString("Safe A9LH Installer v1.0", 10, 10, 0x0000FF); + drawString("Safe A9LH Installer v1.1", 10, 10, 0x0000FF); int pos_y = drawString("Thanks to delebile, #cakey and StandardBus", 10, 40, 0xFFFFFF); pos_y = drawString("Press SELECT for a full install", 10, pos_y + SPACING_VERT, 0xFFFFFF); pos_y = drawString("Press START to only update stage2", 10, pos_y, 0xFFFFFF); diff --git a/source/screeninit.c b/source/screeninit.c index 15ff448..81600da 100644 --- a/source/screeninit.c +++ b/source/screeninit.c @@ -97,6 +97,9 @@ void initLCD(void){ *((vu32 *)0x23FFFE04) = 0x18300000; *((vu32 *)0x23FFFE08) = 0x18346500; + //Clear ARM11 entry offset + *arm11 = 0; + while(1); }