summaryrefslogtreecommitdiff
path: root/apps/gui/statusbar.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-08-24 00:03:59 +0000
committerThomas Martitz <kugel@rockbox.org>2009-08-24 00:03:59 +0000
commit5850207d332f78d4fcf4a7ec22ae8b95b921a183 (patch)
tree3a2be4c63c11c69b1a1fae5d0a5008bf217677c1 /apps/gui/statusbar.h
parent19f44a61cfb333c363d823e43b5de282ef2d2ed0 (diff)
downloadrockbox-5850207d332f78d4fcf4a7ec22ae8b95b921a183.tar.gz
rockbox-5850207d332f78d4fcf4a7ec22ae8b95b921a183.zip
Slightly change parts of the previous commit to reuse existing code, and enforce enum statusbar_values instead of just int,
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22485 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/statusbar.h')
-rw-r--r--apps/gui/statusbar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/statusbar.h b/apps/gui/statusbar.h
index 169b76b15a..84d37858e2 100644
--- a/apps/gui/statusbar.h
+++ b/apps/gui/statusbar.h
@@ -107,7 +107,7 @@ void gui_statusbar_changed(enum screen_type screen,
107#if !defined(HAVE_REMOTE_LCD) || defined(__PCTOOL__) 107#if !defined(HAVE_REMOTE_LCD) || defined(__PCTOOL__)
108#define statusbar_position(a) (global_settings.statusbar) 108#define statusbar_position(a) (global_settings.statusbar)
109#else 109#else
110int statusbar_position(int screen); 110enum statusbar_values statusbar_position(int screen);
111#endif 111#endif
112 112
113#endif /*_GUI_STATUSBAR_H_*/ 113#endif /*_GUI_STATUSBAR_H_*/