diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-07-14 14:58:28 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-07-14 14:58:28 +0000 |
| commit | b41cde58bf0bb74ff7ed1b723d29b7e30a13363a (patch) | |
| tree | deca99184cc594954ba06b61f96ee66d6cc5f584 /apps/debug_menu.c | |
| parent | 4259eb1ed9f223955f21da771093a09c9989b7cb (diff) | |
| download | rockbox-b41cde58bf0bb74ff7ed1b723d29b7e30a13363a.zip rockbox-b41cde58bf0bb74ff7ed1b723d29b7e30a13363a.tar.gz rockbox-b41cde58bf0bb74ff7ed1b723d29b7e30a13363a.tar.bz2 rockbox-b41cde58bf0bb74ff7ed1b723d29b7e30a13363a.tar.xz | |
fix radio screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13887 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 9938819..3766f7e 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) (unsigned)info.write_regs[2], (unsigned)info.write_regs[3], (unsigned)info.write_regs[4]); #endif - gui_synclist_draw(lists); + if (lists) + gui_synclist_draw(lists); } else snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, "HW detected: no"); |