summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-04-18 17:09:15 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-04-18 17:09:15 +0000
commitc4cb0a738e15d63adc56ef0808e06a46f6c12e55 (patch)
tree112205cbec953142a61f9b4f47f4e7c8a58b1cb2
parent6f7c2379de81a691e3cc5a9b4094fbbe40b62460 (diff)
downloadnuttx-c4cb0a738e15d63adc56ef0808e06a46f6c12e55.tar.gz
nuttx-c4cb0a738e15d63adc56ef0808e06a46f6c12e55.tar.bz2
nuttx-c4cb0a738e15d63adc56ef0808e06a46f6c12e55.zip
Remove duplicate color format name
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2614 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/include/nuttx/fb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/include/nuttx/fb.h b/nuttx/include/nuttx/fb.h
index c87f51c3d..f82892c35 100644
--- a/nuttx/include/nuttx/fb.h
+++ b/nuttx/include/nuttx/fb.h
@@ -82,12 +82,12 @@
#define FB_FMT_RGBRAW 11 /* BPP=? */
/* Raw RGB with arbitrary sample packing within a pixel. Packing and precision
- * ov R, G and B components is determined by bit masks for each.
+ * of R, G and B components is determined by bit masks for each.
*/
#define FB_FMT_RGBBTFLD16 12 /* BPP=16 */
#define FB_FMT_RGBBTFLD24 13 /* BPP=24 */
-#define FB_FMT_RGBBTFLD24 14 /* BPP=32 */
+#define FB_FMT_RGBBTFLD32 14 /* BPP=32 */
#define FB_FMT_RGBA16 15 /* BPP=16 Raw RGB with alpha */
#define FB_FMT_RGBA32 16 /* BPP=32 Raw RGB with alpha */