Fix derp in screen init

Removed one line too much
This commit is contained in:
Aurora 2016-03-19 21:31:04 +01:00
parent 30165d347f
commit d522481d44
2 changed files with 4 additions and 1 deletions

View File

@ -35,7 +35,7 @@ static void installStage2(u32 mode, int pos_y){
} }
void installer(void){ 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); 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 SELECT for a full install", 10, pos_y + SPACING_VERT, 0xFFFFFF);
pos_y = drawString("Press START to only update stage2", 10, pos_y, 0xFFFFFF); pos_y = drawString("Press START to only update stage2", 10, pos_y, 0xFFFFFF);

View File

@ -97,6 +97,9 @@ void initLCD(void){
*((vu32 *)0x23FFFE04) = 0x18300000; *((vu32 *)0x23FFFE04) = 0x18300000;
*((vu32 *)0x23FFFE08) = 0x18346500; *((vu32 *)0x23FFFE08) = 0x18346500;
//Clear ARM11 entry offset
*arm11 = 0;
while(1); while(1);
} }