Misc missing constant use

This commit is contained in:
GriffinR
2023-08-10 01:21:38 -04:00
parent da238562f0
commit 18319e8da3
22 changed files with 254 additions and 218 deletions

View File

@@ -422,7 +422,16 @@ static const u8 sDecorationSlideElevation[] =
};
static const u16 sDecorShapeSizes[] = {
0x04, 0x08, 0x10, 0x20, 0x10, 0x08, 0x10, 0x20, 0x40, 0x20
[DECORSHAPE_1x1] = 4,
[DECORSHAPE_2x1] = 8,
[DECORSHAPE_3x1] = 16,
[DECORSHAPE_4x2] = 32,
[DECORSHAPE_2x2] = 16,
[DECORSHAPE_1x2] = 8,
[DECORSHAPE_1x3] = 16,
[DECORSHAPE_2x4] = 32,
[DECORSHAPE_3x3] = 64,
[DECORSHAPE_3x2] = 32,
};
static const u16 sBrendanPalette[] = INCBIN_U16("graphics/decorations/brendan.gbapal");