diff options
author | Dave Chapman <dave@dchapman.com> | 2007-03-05 23:56:28 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2007-03-05 23:56:28 +0000 |
commit | 4d25bffc8ac075d30fff780ab682ebbec29c2a46 (patch) | |
tree | 5980a79a8d19e2f06061a14d87a86034dc94d375 /bootloader/common.h | |
parent | e70362d106b38514ae73593b8286b10324a9b559 (diff) | |
download | rockbox-4d25bffc8ac075d30fff780ab682ebbec29c2a46.tar.gz rockbox-4d25bffc8ac075d30fff780ab682ebbec29c2a46.zip |
Disable bootloader messages in the ipod bootloader unless the RIGHT button is being held. Messages are still displayed if an error occurs. This needs implementing for the other bootloaders.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12631 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader/common.h')
-rw-r--r-- | bootloader/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bootloader/common.h b/bootloader/common.h index 7e001aa9ab..c72952e562 100644 --- a/bootloader/common.h +++ b/bootloader/common.h @@ -26,6 +26,9 @@ #define EBAD_CHKSUM -5 #define EFILE_TOO_BIG -6 +/* Set this to true to enable lcd_update() in the printf function */ +extern bool verbose; + /* Functions common to all bootloaders */ void reset_screen(void); void printf(const char *format, ...); |