diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-09-06 08:14:56 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-09-06 08:14:56 +0000 |
| commit | 9a8382d2dd5712fb1c36a2fdaaa83f908ad52690 (patch) | |
| tree | b71375dae7626b024c824c74fdbec4f60064ee78 | |
| parent | 6e881b483337921c9f85f753f510aacdc8d59162 (diff) | |
| download | rockbox-9a8382d2dd5712fb1c36a2fdaaa83f908ad52690.zip rockbox-9a8382d2dd5712fb1c36a2fdaaa83f908ad52690.tar.gz rockbox-9a8382d2dd5712fb1c36a2fdaaa83f908ad52690.tar.bz2 rockbox-9a8382d2dd5712fb1c36a2fdaaa83f908ad52690.tar.xz | |
undef the defines that used to be set by the makefile, since it'll prevent
a few people to get warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2206 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/options.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/options.h b/apps/options.h index 3a23f94..de7b94b 100644 --- a/apps/options.h +++ b/apps/options.h @@ -21,10 +21,12 @@ #define __OPTIONS_H__ #ifndef DISABLE_SCREENSAVERS +#undef USE_SCREENSAVERS /* since older Makefiles set the define */ #define USE_SCREENSAVERS #endif #ifndef DISABLE_GAMES +#undef USE_GAMES /* since older Makefiles set the define */ #define USE_GAMES #endif |