diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-02-18 08:57:18 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-02-18 08:57:18 +0000 |
| commit | 4dfb9738abe190303c5391e61dac8c46a3c09557 (patch) | |
| tree | 5fe8b929d2619f712d28d5008a4634414696e6da | |
| parent | 895d577575dc462b80f7cc8959457e3a74c66c8e (diff) | |
| download | rockbox-4dfb9738abe190303c5391e61dac8c46a3c09557.zip rockbox-4dfb9738abe190303c5391e61dac8c46a3c09557.tar.gz rockbox-4dfb9738abe190303c5391e61dac8c46a3c09557.tar.bz2 rockbox-4dfb9738abe190303c5391e61dac8c46a3c09557.tar.xz | |
Fix LCD_PIXELFORMAT warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12387 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config-fmrecorder.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-ondiofm.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-ondiosp.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-recorder.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-recorderv2.h | 2 |
5 files changed, 10 insertions, 0 deletions
diff --git a/firmware/export/config-fmrecorder.h b/firmware/export/config-fmrecorder.h index c43c883..56c151a 100644 --- a/firmware/export/config-fmrecorder.h +++ b/firmware/export/config-fmrecorder.h @@ -23,6 +23,8 @@ #define LCD_HEIGHT 64 #define LCD_DEPTH 1 +#define LCD_PIXELFORMAT VERTICAL_PACKING + /* define this if you have a Recorder style 10-key keyboard */ #define CONFIG_KEYPAD RECORDER_PAD diff --git a/firmware/export/config-ondiofm.h b/firmware/export/config-ondiofm.h index 8a26efc..78a7073 100644 --- a/firmware/export/config-ondiofm.h +++ b/firmware/export/config-ondiofm.h @@ -18,6 +18,8 @@ #define LCD_HEIGHT 64 #define LCD_DEPTH 1 +#define LCD_PIXELFORMAT VERTICAL_PACKING + /* define this if you have an Ondio style 6-key keyboard */ #define CONFIG_KEYPAD ONDIO_PAD diff --git a/firmware/export/config-ondiosp.h b/firmware/export/config-ondiosp.h index 8237d8c..23420d9 100644 --- a/firmware/export/config-ondiosp.h +++ b/firmware/export/config-ondiosp.h @@ -15,6 +15,8 @@ #define LCD_HEIGHT 64 #define LCD_DEPTH 1 +#define LCD_PIXELFORMAT VERTICAL_PACKING + /* define this if you have an Ondio style 6-key keyboard */ #define CONFIG_KEYPAD ONDIO_PAD diff --git a/firmware/export/config-recorder.h b/firmware/export/config-recorder.h index de4617c..a48635d 100644 --- a/firmware/export/config-recorder.h +++ b/firmware/export/config-recorder.h @@ -23,6 +23,8 @@ #define LCD_HEIGHT 64 #define LCD_DEPTH 1 +#define LCD_PIXELFORMAT VERTICAL_PACKING + /* define this if you have the Recorder's 10-key keyboard */ #define CONFIG_KEYPAD RECORDER_PAD diff --git a/firmware/export/config-recorderv2.h b/firmware/export/config-recorderv2.h index 38ca974..039b4c7 100644 --- a/firmware/export/config-recorderv2.h +++ b/firmware/export/config-recorderv2.h @@ -23,6 +23,8 @@ #define LCD_HEIGHT 64 #define LCD_DEPTH 1 +#define LCD_PIXELFORMAT VERTICAL_PACKING + /* define this if you have a Recorder style 10-key keyboard */ #define CONFIG_KEYPAD RECORDER_PAD |