diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2006-08-15 12:27:07 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2006-08-15 12:27:07 +0000 |
| commit | 224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9 (patch) | |
| tree | bae2154b272f786983cf8e6de28d33f98f327560 /apps/main.c | |
| parent | c0f8b187706364f5e4bda2ac26750d14454c901d (diff) | |
| download | rockbox-224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9.zip rockbox-224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9.tar.gz rockbox-224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9.tar.bz2 rockbox-224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9.tar.xz | |
Finally, the new button action system is here, thanks to Jonathan Gordon. Some button mappings have changed and other things may break. Comments should go to the forum, http://forums.rockbox.org/index.php?topic=5829.0 or the mailing list.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10582 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main.c')
| -rw-r--r-- | apps/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/main.c b/apps/main.c index 95e6663..c50af86 100644 --- a/apps/main.c +++ b/apps/main.c @@ -365,7 +365,7 @@ void init(void) lcd_puts(0, 1, str); lcd_puts(0, 3, "Press ON to debug"); lcd_update(); - while(!(button_get(true) & BUTTON_REL)); + while(!(button_get(true) & BUTTON_REL)); /*DO NOT CHANGE TO ACTION SYSTEM */ dbg_ports(); #endif panicf("ata: %d", rc); |