diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-03-04 08:35:20 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-03-04 08:35:20 +0000 |
| commit | 5ea43ce8a9b5cec6f8dfdfb20321edaa8ef4a5e0 (patch) | |
| tree | 7353da15dc65be8f9bd420be7131387745aaf6cc | |
| parent | e6ba70548d20bc31809d2273c15534cf1b46df98 (diff) | |
| download | rockbox-5ea43ce8a9b5cec6f8dfdfb20321edaa8ef4a5e0.zip rockbox-5ea43ce8a9b5cec6f8dfdfb20321edaa8ef4a5e0.tar.gz rockbox-5ea43ce8a9b5cec6f8dfdfb20321edaa8ef4a5e0.tar.bz2 rockbox-5ea43ce8a9b5cec6f8dfdfb20321edaa8ef4a5e0.tar.xz | |
thats what happens when you commit between dinner courses :p
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12582 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/gui/list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/list.c b/apps/gui/list.c index 0fa2ce5..950878b 100644 --- a/apps/gui/list.c +++ b/apps/gui/list.c @@ -888,7 +888,7 @@ unsigned gui_synclist_do_button(struct gui_synclist * lists, case ACTION_LISTTREE_PGUP: { int screen = -#if HAVE_REMOTE_LCD +#ifdef HAVE_REMOTE_LCD get_action_statuscode(NULL)&ACTION_REMOTE ? SCREEN_REMOTE : #endif @@ -902,7 +902,7 @@ unsigned gui_synclist_do_button(struct gui_synclist * lists, case ACTION_LISTTREE_PGDOWN: { int screen = -#if HAVE_REMOTE_LCD +#ifdef HAVE_REMOTE_LCD get_action_statuscode(NULL)&ACTION_REMOTE ? SCREEN_REMOTE : #endif |