diff options
author | Peter D'Hoye <peter.dhoye@gmail.com> | 2008-05-29 20:32:39 +0000 |
---|---|---|
committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2008-05-29 20:32:39 +0000 |
commit | f76122f0e7a3b82962dbe005d58a643c835013d0 (patch) | |
tree | 5c4e17d6bf78d70c5612191f9c2f70a561e35b77 /apps/screen_access.h | |
parent | 0792596e1757a5ad91c3959d3721d812c8a282eb (diff) | |
download | rockbox-f76122f0e7a3b82962dbe005d58a643c835013d0.tar.gz rockbox-f76122f0e7a3b82962dbe005d58a643c835013d0.tar.bz2 rockbox-f76122f0e7a3b82962dbe005d58a643c835013d0.zip |
Accept FS #9052 by Alexander Levin with a fix by me. Changes HAS_BUTTONBAR into HAVE_BUTTONBAR to bring it in line with the other defines
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17655 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screen_access.h')
-rw-r--r-- | apps/screen_access.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h index 883e1528dd..07684b0a76 100644 --- a/apps/screen_access.h +++ b/apps/screen_access.h @@ -68,7 +68,7 @@ struct screen #if (CONFIG_LED == LED_VIRTUAL) || defined(HAVE_REMOTE_LCD) bool has_disk_led; #endif -#ifdef HAS_BUTTONBAR +#ifdef HAVE_BUTTONBAR bool has_buttonbar; #endif void (*set_viewport)(struct viewport* vp); @@ -155,7 +155,7 @@ struct screen void (*backlight_set_timeout)(int index); }; -#ifdef HAS_BUTTONBAR +#ifdef HAVE_BUTTONBAR /* * Sets if the given screen has a buttonbar or not * - screen : the screen structure |