summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-07-14 14:58:28 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-07-14 14:58:28 +0000
commitb41cde58bf0bb74ff7ed1b723d29b7e30a13363a (patch)
treedeca99184cc594954ba06b61f96ee66d6cc5f584
parent4259eb1ed9f223955f21da771093a09c9989b7cb (diff)
downloadrockbox-b41cde58bf0bb74ff7ed1b723d29b7e30a13363a.tar.gz
rockbox-b41cde58bf0bb74ff7ed1b723d29b7e30a13363a.zip
fix radio screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13887 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/debug_menu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 993881937e..3766f7e5db 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1988,7 +1988,8 @@ static int radio_callback(int btn, struct gui_synclist *lists)
1988 (unsigned)info.write_regs[2], (unsigned)info.write_regs[3], 1988 (unsigned)info.write_regs[2], (unsigned)info.write_regs[3],
1989 (unsigned)info.write_regs[4]); 1989 (unsigned)info.write_regs[4]);
1990#endif 1990#endif
1991 gui_synclist_draw(lists); 1991 if (lists)
1992 gui_synclist_draw(lists);
1992 } 1993 }
1993 else 1994 else
1994 snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, "HW detected: no"); 1995 snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, "HW detected: no");