summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/system.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/firmware/system.c b/firmware/system.c
index dd356bab1f..e6ea543069 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -891,14 +891,13 @@ void UIE (unsigned int pc) /* Unexpected Interrupt or Exception */
/* try to restart firmware if ON is pressed */
#if CONFIG_KEYPAD == PLAYER_PAD
if (!(PADR & 0x0020))
- rolo_load("/archos.mod");
#elif CONFIG_KEYPAD == RECORDER_PAD
#ifdef HAVE_FMADC
if (!(PCDR & 0x0008))
#else
if (!(PBDR & 0x0100))
#endif
- rolo_load("/ajbrec.ajz");
+ system_reboot();
#endif
}
}