diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2010-05-16 04:25:26 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2010-05-16 04:25:26 +0000 |
commit | 33bb4cdb1b01221eb7d3548a774fdd242f4cbb7b (patch) | |
tree | eedeb00f590035d3726bd82b2852f90861fca614 /apps | |
parent | fef807acf782c4af69b10767c4cc08c832e39291 (diff) |
Make sure to include audiohw.h in settings.h or the definition of struct user_settings could get out of sync amongnst various #includes. Might be the reason for FS#11277 -iPod Video crashes at startup.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26074 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/settings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h index 8c58fed900..5c28b4c0a6 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -26,6 +26,7 @@ #include <stddef.h> #include "inttypes.h" #include "config.h" +#include "audiohw.h" /* for the AUDIOHW_* defines */ #include "statusbar.h" /* for the statusbar values */ #include "quickscreen.h" #include "button.h" |