diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-12-02 23:56:24 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-12-02 23:56:24 +0000 |
| commit | 7f9c1718b5cdc4e8c8393dd969b6da84f10e3169 (patch) | |
| tree | d6a44051b6817e2efea5fee13180713121afadc9 | |
| parent | 55b58a3f30270ce8df7c1b51720bb777e7972c7f (diff) | |
| download | rockbox-7f9c1718b5cdc4e8c8393dd969b6da84f10e3169.zip rockbox-7f9c1718b5cdc4e8c8393dd969b6da84f10e3169.tar.gz rockbox-7f9c1718b5cdc4e8c8393dd969b6da84f10e3169.tar.bz2 rockbox-7f9c1718b5cdc4e8c8393dd969b6da84f10e3169.tar.xz | |
Fix red by moving the difinition up.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28729 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index 6b64137..bafff05 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -441,6 +441,10 @@ Lyre prototype 1 */ /* no known platform */ #endif +#ifndef CONFIG_PLATFORM +#define CONFIG_PLATFORM PLATFORM_NATIVE +#endif + /* keep this include after the target configs */ #ifdef SIMULATOR #include "config/sim.h" @@ -518,10 +522,6 @@ Lyre prototype 1 */ #define CONFIG_BACKLIGHT_FADING BACKLIGHT_NO_FADING #endif -#ifndef CONFIG_PLATFORM -#define CONFIG_PLATFORM PLATFORM_NATIVE -#endif - #ifndef CONFIG_TUNER #define CONFIG_TUNER 0 #endif |