diff options
| author | Dave Chapman <dave@dchapman.com> | 2008-05-05 07:50:06 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2008-05-05 07:50:06 +0000 |
| commit | d7bda7bd68ba2330c7c80663b838395e1cfbad31 (patch) | |
| tree | b46147858311a4c5d9cc40b760e012fcf69429b7 /apps/debug_menu.c | |
| parent | 82c1aa8e8eef26bfba851a1d091f8f0843a2e6c2 (diff) | |
| download | rockbox-d7bda7bd68ba2330c7c80663b838395e1cfbad31.zip rockbox-d7bda7bd68ba2330c7c80663b838395e1cfbad31.tar.gz rockbox-d7bda7bd68ba2330c7c80663b838395e1cfbad31.tar.bz2 rockbox-d7bda7bd68ba2330c7c80663b838395e1cfbad31.tar.xz | |
Fix errors for ZVM build caused by r17366
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17367 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 3638f11..6a14ea5 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -2453,7 +2453,7 @@ static int isp1583_action_callback(int action, struct gui_synclist *lists) static bool dbg_isp1583(void) { struct simplelist_info isp1583; - info.scroll_all = true; + isp1583.scroll_all = true; simplelist_info_init(&isp1583, "ISP1583", dbg_usb_num_items(), NULL); isp1583.timeout = HZ/100; isp1583.hide_selection = true; @@ -2478,7 +2478,7 @@ static int pic_action_callback(int action, struct gui_synclist *lists) static bool dbg_pic(void) { struct simplelist_info pic; - info.scroll_all = true; + pic.scroll_all = true; simplelist_info_init(&pic, "PIC", pic_dbg_num_items(), NULL); pic.timeout = HZ/100; pic.hide_selection = true; |