diff options
author | Torbjörn Andersson | 2009-06-16 17:52:32 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2009-06-16 17:52:32 +0000 |
commit | 78eed8b7c4c155c709ec17a73043c4d5ce597bc3 (patch) | |
tree | ab8296fe3371e57c5faeb093b75930b77153ed12 /graphics/pixelformat.h | |
parent | db9cfc6f962790a270b357c3d47a5dc0e15a37b0 (diff) | |
download | scummvm-rg350-78eed8b7c4c155c709ec17a73043c4d5ce597bc3.tar.gz scummvm-rg350-78eed8b7c4c155c709ec17a73043c4d5ce597bc3.tar.bz2 scummvm-rg350-78eed8b7c4c155c709ec17a73043c4d5ce597bc3.zip |
Fixed warning. (GCC doesn't like commas at the end of an enum list.)
svn-id: r41586
Diffstat (limited to 'graphics/pixelformat.h')
-rw-r--r-- | graphics/pixelformat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/pixelformat.h b/graphics/pixelformat.h index cc769be46a..37fca07b48 100644 --- a/graphics/pixelformat.h +++ b/graphics/pixelformat.h @@ -44,7 +44,6 @@ namespace Graphics { * to get the applicable color order. */ enum ColorMode { - kFormatCLUT8 = 0, //256 color palette. #ifdef ENABLE_16BIT kFormatRGB555 = 1, kFormatXRGB1555 = 2, // Special case, high bit has special purpose, which may be alpha. @@ -54,8 +53,9 @@ enum ColorMode { #endif #ifdef ENABLE_32BIT kFormatRGB888 = 5, - kFormatRGBA8888 = 6 + kFormatRGBA8888 = 6, #endif + kFormatCLUT8 = 0 //256 color palette. }; #endif |