Little fix.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3373 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
Meep-Eep
2009-11-30 17:44:59 +00:00
parent b5824cca45
commit 1d07ed79a2
+6 -7
View File
@@ -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)
{