Remove unused union

This commit is contained in:
Jeffrey Pfau 2014-09-30 22:57:05 -07:00
parent 5874d416df
commit 015e6700d7
1 changed files with 0 additions and 9 deletions

View File

@ -43,15 +43,6 @@ enum ObjShape {
OBJ_SHAPE_VERTICAL = 2
};
union GBAColor {
struct {
unsigned r : 5;
unsigned g : 5;
unsigned b : 5;
};
uint16_t packed;
};
struct GBAObj {
unsigned y : 8;
unsigned transformed : 1;