diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-09-06 20:53:39 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-09-06 20:53:39 +0000 |
| commit | fb1850b755708e98f63583cc1571036b2fc6bbb8 (patch) | |
| tree | 94cf2e5e2bdb368feb262d7a29532c66485daf49 | |
| parent | 8fd5b177ede6e3fb76e1e5695729a10732d46fd9 (diff) | |
| download | rockbox-fb1850b755708e98f63583cc1571036b2fc6bbb8.zip rockbox-fb1850b755708e98f63583cc1571036b2fc6bbb8.tar.gz rockbox-fb1850b755708e98f63583cc1571036b2fc6bbb8.tar.bz2 rockbox-fb1850b755708e98f63583cc1571036b2fc6bbb8.tar.xz | |
Moved the system_reboot() call to the correct place
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7483 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/system.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/system.c b/firmware/system.c index e6ea543..20dc7c5 100644 --- a/firmware/system.c +++ b/firmware/system.c @@ -897,8 +897,8 @@ void UIE (unsigned int pc) /* Unexpected Interrupt or Exception */ #else if (!(PBDR & 0x0100)) #endif - system_reboot(); #endif + system_reboot(); } } |