fix compile errors

This commit is contained in:
Such Meme, Many Skill
2019-08-16 20:07:33 +02:00
parent ec39359fde
commit 5b15e4cdf7
4 changed files with 12 additions and 12 deletions

View File

@@ -153,7 +153,6 @@ extern void pivot_stack(u32 stack_top);
void ipl_main()
{
bool sd_mounted = false;
config_hw();
pivot_stack(IPL_STACK_TOP);
heap_init(IPL_HEAP_START);
@@ -164,8 +163,6 @@ void ipl_main()
gfx_con_init();
display_backlight_pwm_init();
sd_mounted = sd_mount();
meme_main(sd_mounted);
meme_main();
sd_unmount();
}