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/creativezvm.c | |
| parent | 97f775df059b1d505a72369e5f69559eeec175f4 (diff) | |
| download | rockbox-23fc923bde033d2abffa29651f3dff921abcaed7.zip rockbox-23fc923bde033d2abffa29651f3dff921abcaed7.tar.gz rockbox-23fc923bde033d2abffa29651f3dff921abcaed7.tar.bz2 rockbox-23fc923bde033d2abffa29651f3dff921abcaed7.tar.xz | |
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 '')
| -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 a9967fe..bd8050b 100644 --- a/bootloader/creativezvm.c +++ b/bootloader/creativezvm.c @@ -68,7 +68,8 @@ void main(void) if(ret) printf("ATA error: %d", ret); - if(1) + /* If no button is held, start the OF */ + if(button_read_device() == 0) { printf("Loading Creative firmware..."); |