Merge pull request #2160 from rayrobdod/align_rl
Fix RL compressed data alignment
This commit is contained in:
@@ -61,9 +61,9 @@ void LZ77UnCompWram(const u32 *src, void *dest);
|
|||||||
|
|
||||||
void LZ77UnCompVram(const u32 *src, void *dest);
|
void LZ77UnCompVram(const u32 *src, void *dest);
|
||||||
|
|
||||||
void RLUnCompWram(const void *src, void *dest);
|
void RLUnCompWram(const u32 *src, void *dest);
|
||||||
|
|
||||||
void RLUnCompVram(const void *src, void *dest);
|
void RLUnCompVram(const u32 *src, void *dest);
|
||||||
|
|
||||||
int MultiBoot(struct MultiBootParam *mp);
|
int MultiBoot(struct MultiBootParam *mp);
|
||||||
|
|
||||||
|
|||||||
@@ -69,19 +69,19 @@ extern const u8 gContestPaintingTough1[];
|
|||||||
extern const u8 gContestPaintingTough2[];
|
extern const u8 gContestPaintingTough2[];
|
||||||
extern const u8 gContestPaintingTough3[];
|
extern const u8 gContestPaintingTough3[];
|
||||||
|
|
||||||
static const u16 sPictureFramePalettes[] = INCBIN_U16("graphics/picture_frame/bg.gbapal");
|
static const u16 sPictureFramePalettes[] = INCBIN_U16("graphics/picture_frame/bg.gbapal");
|
||||||
static const u8 sPictureFrameTiles_Cool[] = INCBIN_U8("graphics/picture_frame/cool.4bpp.rl");
|
static const u32 sPictureFrameTiles_Cool[] = INCBIN_U32("graphics/picture_frame/cool.4bpp.rl");
|
||||||
static const u8 sPictureFrameTiles_Beauty[] = INCBIN_U8("graphics/picture_frame/beauty.4bpp.rl");
|
static const u32 sPictureFrameTiles_Beauty[] = INCBIN_U32("graphics/picture_frame/beauty.4bpp.rl");
|
||||||
static const u8 sPictureFrameTiles_Cute[] = INCBIN_U8("graphics/picture_frame/cute.4bpp.rl");
|
static const u32 sPictureFrameTiles_Cute[] = INCBIN_U32("graphics/picture_frame/cute.4bpp.rl");
|
||||||
static const u8 sPictureFrameTiles_Smart[] = INCBIN_U8("graphics/picture_frame/smart.4bpp.rl");
|
static const u32 sPictureFrameTiles_Smart[] = INCBIN_U32("graphics/picture_frame/smart.4bpp.rl");
|
||||||
static const u8 sPictureFrameTiles_Tough[] = INCBIN_U8("graphics/picture_frame/tough.4bpp.rl");
|
static const u32 sPictureFrameTiles_Tough[] = INCBIN_U32("graphics/picture_frame/tough.4bpp.rl");
|
||||||
static const u8 sPictureFrameTiles_HallLobby[] = INCBIN_U8("graphics/picture_frame/lobby.4bpp.rl");
|
static const u32 sPictureFrameTiles_HallLobby[] = INCBIN_U32("graphics/picture_frame/lobby.4bpp.rl");
|
||||||
static const u8 sPictureFrameTilemap_Cool[] = INCBIN_U8("graphics/picture_frame/cool_map.bin.rl");
|
static const u32 sPictureFrameTilemap_Cool[] = INCBIN_U32("graphics/picture_frame/cool_map.bin.rl");
|
||||||
static const u8 sPictureFrameTilemap_Beauty[] = INCBIN_U8("graphics/picture_frame/beauty_map.bin.rl");
|
static const u32 sPictureFrameTilemap_Beauty[] = INCBIN_U32("graphics/picture_frame/beauty_map.bin.rl");
|
||||||
static const u8 sPictureFrameTilemap_Cute[] = INCBIN_U8("graphics/picture_frame/cute_map.bin.rl");
|
static const u32 sPictureFrameTilemap_Cute[] = INCBIN_U32("graphics/picture_frame/cute_map.bin.rl");
|
||||||
static const u8 sPictureFrameTilemap_Smart[] = INCBIN_U8("graphics/picture_frame/smart_map.bin.rl");
|
static const u32 sPictureFrameTilemap_Smart[] = INCBIN_U32("graphics/picture_frame/smart_map.bin.rl");
|
||||||
static const u8 sPictureFrameTilemap_Tough[] = INCBIN_U8("graphics/picture_frame/tough_map.bin.rl");
|
static const u32 sPictureFrameTilemap_Tough[] = INCBIN_U32("graphics/picture_frame/tough_map.bin.rl");
|
||||||
static const u8 sPictureFrameTilemap_HallLobby[] = INCBIN_U8("graphics/picture_frame/lobby_map.bin.rl");
|
static const u32 sPictureFrameTilemap_HallLobby[] = INCBIN_U32("graphics/picture_frame/lobby_map.bin.rl");
|
||||||
|
|
||||||
static const u8 *const sContestCategoryNames_Unused[] =
|
static const u8 *const sContestCategoryNames_Unused[] =
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user