aboutsummaryrefslogtreecommitdiff
path: root/common/system.h
diff options
context:
space:
mode:
authorPaul Gilbert2008-01-05 12:16:32 +0000
committerPaul Gilbert2008-01-05 12:16:32 +0000
commit9097d97a356124634f936e6c17787a874f77ad81 (patch)
treee482f8303555a564fec6491bc2f01fdea7f760d2 /common/system.h
parent62fdf1afa0e9d497d4bd08c1fa5c4452518b2cb5 (diff)
downloadscummvm-rg350-9097d97a356124634f936e6c17787a874f77ad81.tar.gz
scummvm-rg350-9097d97a356124634f936e6c17787a874f77ad81.tar.bz2
scummvm-rg350-9097d97a356124634f936e6c17787a874f77ad81.zip
Fixed comment that incorrectly reversed green and blue ordering for setPalette data
svn-id: r30237
Diffstat (limited to 'common/system.h')
-rw-r--r--common/system.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/system.h b/common/system.h
index 98ea02df20..e77431dc9e 100644
--- a/common/system.h
+++ b/common/system.h
@@ -415,8 +415,8 @@ public:
*
* The palette data is specified in interleaved RGBA format. That is, the
* first byte of the memory block 'colors' points at is the red component
- * of the first new color; the second byte the blue component of the first
- * new color; the third byte the green component, the last byte to the alpha
+ * of the first new color; the second byte the green component of the first
+ * new color; the third byte the blue component, the last byte to the alpha
* (transparency) value. Then the second color starts, and so on. So memory
* looks like this: R1-G1-B1-A1-R2-G2-B2-A2-R3-...
*