Clear screen on exit

This commit is contained in:
d0k3 2016-09-07 00:21:38 +02:00
parent 659e66e1ca
commit 4abb666c1f

View File

@ -20,6 +20,8 @@ void PowerOff()
int main()
{
(GodMode() == GODMODE_EXIT_REBOOT) ? Reboot() : PowerOff();
u32 godmode_exit = GodMode();
ClearScreenF(true, true, COLOR_STD_BG);
(godmode_exit == GODMODE_EXIT_REBOOT) ? Reboot() : PowerOff();
return 0;
}