From 78eed8b7c4c155c709ec17a73043c4d5ce597bc3 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Tue, 16 Jun 2009 17:52:32 +0000 Subject: Fixed warning. (GCC doesn't like commas at the end of an enum list.) svn-id: r41586 --- graphics/pixelformat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'graphics/pixelformat.h') 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 -- cgit v1.2.3