summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-03-21 15:13:29 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-03-21 15:13:29 +0000
commit2064efbfcd4d3d3a7f0c13c6aa5b1a2cc21f87c1 (patch)
tree9d0deb96d8715b31f89be853b2947f068b1f13d5
parentd5ac4c44e54db85ac18cad08635837399d752afb (diff)
downloadrockbox-2064efbfcd4d3d3a7f0c13c6aa5b1a2cc21f87c1.tar.gz
rockbox-2064efbfcd4d3d3a7f0c13c6aa5b1a2cc21f87c1.zip
Fix red.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25276 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/debug_menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index c9b56acb3d..fbaae57601 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1101,7 +1101,7 @@ bool dbg_ports(void)
1101 while(1) 1101 while(1)
1102 { 1102 {
1103 line = 0; 1103 line = 0;
1104#if (LCD_HEIGHT / SYSFONT_HEIGHT >= 22) /* Only for displays >= 22 lines */ 1104#if (LCD_HEIGHT >= 176) /* Only for displays with appropriate height. */
1105 lcd_puts(0, line++, "GPIO ENABLE:"); 1105 lcd_puts(0, line++, "GPIO ENABLE:");
1106 lcd_putsf(0, line++, "A: %02x E: %02x I: %02x", 1106 lcd_putsf(0, line++, "A: %02x E: %02x I: %02x",
1107 (unsigned int)GPIOA_ENABLE, 1107 (unsigned int)GPIOA_ENABLE,