From 1d07ed79a2ce4c5d17ea5af36c52118068714b9d Mon Sep 17 00:00:00 2001 From: Meep-Eep Date: Mon, 30 Nov 2009 17:44:59 +0000 Subject: [PATCH] Little fix. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3373 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/libs/gfxlib.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/sc2/src/libs/gfxlib.h b/sc2/src/libs/gfxlib.h index 954435736..df4e828b9 100644 --- a/sc2/src/libs/gfxlib.h +++ b/sc2/src/libs/gfxlib.h @@ -22,6 +22,12 @@ #include "libs/compiler.h" typedef struct Color Color; +struct Color { + BYTE r; + BYTE g; + BYTE b; + BYTE a; // Currently unused +}; #include "libs/reslib.h" @@ -42,13 +48,6 @@ typedef UWORD TIME_VALUE; typedef SWORD COORD; -struct Color { - BYTE r; - BYTE g; - BYTE b; - BYTE a; // Currently unused -}; - static inline bool sameColor(Color c1, Color c2) {