From 835012fa35295f09a417582c7f76e0c0d32d8bae Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Tue, 6 Sep 2005 20:22:34 +0000 Subject: Call system_reboot() instead of rolo_load() in the UIE handler git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7479 a1c6a512-1295-4272-9138-f99709370657 --- firmware/system.c | 3 +-- 1 file changed, 1 insertion(+), 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 } } -- cgit v1.2.3