summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-04-29 01:09:39 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-04-29 01:09:39 +0000
commitc741ecc68a5e0c709d9f93ed10866da9bd6f6465 (patch)
treee11c12f6106938a0e0ff2b5683a094b607ba4962 /firmware/export
parenta6100fb5ee093ecc9b263c2c659c653d90eed585 (diff)
downloadrockbox-c741ecc68a5e0c709d9f93ed10866da9bd6f6465.zip
rockbox-c741ecc68a5e0c709d9f93ed10866da9bd6f6465.tar.gz
rockbox-c741ecc68a5e0c709d9f93ed10866da9bd6f6465.tar.bz2
rockbox-c741ecc68a5e0c709d9f93ed10866da9bd6f6465.tar.xz
yep.. I really cant spell
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17287 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/config-creativezvm.h2
-rw-r--r--firmware/export/config-mrobe500.h4
-rw-r--r--firmware/export/config.h4
3 files changed, 5 insertions, 5 deletions
diff --git a/firmware/export/config-creativezvm.h b/firmware/export/config-creativezvm.h
index f5ec333..509bbc9 100644
--- a/firmware/export/config-creativezvm.h
+++ b/firmware/export/config-creativezvm.h
@@ -54,7 +54,7 @@
#define CONFIG_LCD LCD_CREATIVEZVM
/* choose the lcd orientation. both work */
-#define CONFIG_ORIENTATION SCREEN_PORTAIT
+#define CONFIG_ORIENTATION SCREEN_PORTRAIT
#define LCD_WIDTH 320
#define LCD_HEIGHT 240
diff --git a/firmware/export/config-mrobe500.h b/firmware/export/config-mrobe500.h
index c8c14ac..3b1f789 100644
--- a/firmware/export/config-mrobe500.h
+++ b/firmware/export/config-mrobe500.h
@@ -54,10 +54,10 @@
#define CONFIG_LCD LCD_MROBE500
/* choose the lcd orientation. both work */
-/* #define CONFIG_ORIENTATION SCREEN_PORTAIT */
+/* #define CONFIG_ORIENTATION SCREEN_PORTRAIT */
#define CONFIG_ORIENTATION SCREEN_LANDSCAPE
-#if CONFIG_ORIENTATION == SCREEN_PORTAIT
+#if CONFIG_ORIENTATION == SCREEN_PORTRAIT
#define LCD_WIDTH 480
#define LCD_HEIGHT 640
#else
diff --git a/firmware/export/config.h b/firmware/export/config.h
index f4e38ce..565f895 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -128,7 +128,7 @@
#define RGB565SWAPPED 3553
/* CONFIG_ORIENTATION */
-#define SCREEN_PORTAIT 0
+#define SCREEN_PORTRAIT 0
#define SCREEN_LANDSCAPE 1
#define SCREEN_SQUARE 2
@@ -281,7 +281,7 @@
#ifndef CONFIG_ORIENTATION
#if LCD_HEIGHT > LCD_WIDTH
-#define CONFIG_ORIENTATION SCREEN_PORTAIT
+#define CONFIG_ORIENTATION SCREEN_PORTRAIT
#elif LCD_HEIGHT < LCD_WIDTH
#define CONFIG_ORIENTATION SCREEN_LANDSCAPE
#else