diff options
author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-09-07 17:24:14 +0000 |
---|---|---|
committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-09-07 17:24:14 +0000 |
commit | 23fc923bde033d2abffa29651f3dff921abcaed7 (patch) | |
tree | df3aec4da921c3923d39c30f8c82b66fab419313 /bootloader | |
parent | 97f775df059b1d505a72369e5f69559eeec175f4 (diff) | |
download | rockbox-23fc923bde033d2abffa29651f3dff921abcaed7.tar.gz rockbox-23fc923bde033d2abffa29651f3dff921abcaed7.zip |
ZVM:
* Optimize MiniFS handling
* Add basic CFS handling (doesn't work yet)
* Remove hacky stuff in disk.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18438 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader')
-rw-r--r-- | bootloader/creativezvm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bootloader/creativezvm.c b/bootloader/creativezvm.c index a9967fe984..bd8050b22a 100644 --- a/bootloader/creativezvm.c +++ b/bootloader/creativezvm.c | |||
@@ -68,7 +68,8 @@ void main(void) | |||
68 | if(ret) | 68 | if(ret) |
69 | printf("ATA error: %d", ret); | 69 | printf("ATA error: %d", ret); |
70 | 70 | ||
71 | if(1) | 71 | /* If no button is held, start the OF */ |
72 | if(button_read_device() == 0) | ||
72 | { | 73 | { |
73 | printf("Loading Creative firmware..."); | 74 | printf("Loading Creative firmware..."); |
74 | 75 | ||