mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-22 18:06:40 +00:00
exo: Fix exo fatal dump's header
This commit is contained in:
parent
f021665089
commit
fb7c83a66c
1 changed files with 3 additions and 3 deletions
|
@ -361,9 +361,6 @@ void secmon_exo_check_panic()
|
||||||
if ((rpt->magic & 0xF0FFFFFF) != ATM_FATAL_MAGIC)
|
if ((rpt->magic & 0xF0FFFFFF) != ATM_FATAL_MAGIC)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Change magic to invalid, to prevent double-display of error/bootlooping.
|
|
||||||
rpt->magic = 0;
|
|
||||||
|
|
||||||
gfx_clear_grey(0x1B);
|
gfx_clear_grey(0x1B);
|
||||||
gfx_con_setpos(0, 0);
|
gfx_con_setpos(0, 0);
|
||||||
|
|
||||||
|
@ -386,6 +383,9 @@ void secmon_exo_check_panic()
|
||||||
gfx_con.fntsz = 16;
|
gfx_con.fntsz = 16;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Change magic to invalid, to prevent double-display of error/bootlooping.
|
||||||
|
rpt->magic = 0;
|
||||||
|
|
||||||
gfx_printf("\n\nPress POWER to continue.\n");
|
gfx_printf("\n\nPress POWER to continue.\n");
|
||||||
|
|
||||||
display_backlight_brightness(100, 1000);
|
display_backlight_brightness(100, 1000);
|
||||||
|
|
Loading…
Reference in a new issue