Dump another fame checker tilemap

This commit is contained in:
PikalaxALT
2018-11-28 10:50:41 -05:00
parent a538f77b55
commit 144027e4fa
5 changed files with 15 additions and 15 deletions
+6 -6
View File
@@ -393,17 +393,17 @@ gUnknown_8E9E9FC:: @ 8E9E9FC
gUnknown_8E9F1FC:: @ 8E9F1FC
.incbin "baserom.gba", 0xE9F1FC, 0x24
gUnknown_8E9F220:: @ 8E9F220
gFameCheckerBgPals:: @ 8E9F220
.incbin "data/graphics/fame_checker_bg.gbapal"
gUnknown_8E9F260:: @ 8E9F260
gFameCheckerBgTiles:: @ 8E9F260
.incbin "data/graphics/fame_checker_bg.4bpp"
gUnknown_8EA0700:: @ 8EA0700
.incbin "data/graphics/fame_checker_tilemap.bin"
gFameCheckerBg3Tilemap:: @ 8EA0700
.incbin "data/graphics/fame_checker_tilemap3.bin"
gUnknown_8EA0F00:: @ 8EA0F00
.incbin "baserom.gba", 0xEA0F00, 0x800
gFameCheckerBg2Tilemap:: @ 8EA0F00
.incbin "data/graphics/fame_checker_tilemap2.bin"
gUnknown_8EA1700:: @ 8EA1700
.incbin "baserom.gba", 0xEA1700, 0x20
Binary file not shown.
+4 -4
View File
@@ -145,9 +145,9 @@ extern const u16 gUnknown_08DDAFE0[];
// fame_checker
extern const u16 gUnknown_8E9F220[0x30];
extern const u16 gUnknown_8E9F260[0xa50];
extern const u16 gUnknown_8EA0700[0x400];
extern const u16 gUnknown_8EA0F00[0x400];
extern const u16 gFameCheckerBgPals[0x30];
extern const u16 gFameCheckerBgTiles[0xa50];
extern const u16 gFameCheckerBg3Tilemap[0x400];
extern const u16 gFameCheckerBg2Tilemap[0x400];
#endif //GUARD_GRAPHICS_H
+5 -5
View File
@@ -478,11 +478,11 @@ static void MainCB2_LoadFameChecker(void)
gMain.state++;
break;
case 3:
LoadBgTiles(3, gUnknown_8E9F260, sizeof(gUnknown_8E9F260), 0);
CopyToBgTilemapBufferRect(3, gUnknown_8EA0700, 0, 0, 32, 32);
LoadPalette(gUnknown_8E9F220 + 0x00, 0x00, 0x40);
LoadPalette(gUnknown_8E9F220 + 0x10, 0x10, 0x20);
CopyToBgTilemapBufferRect(2, gUnknown_8EA0F00, 0, 0, 32, 32);
LoadBgTiles(3, gFameCheckerBgTiles, sizeof(gFameCheckerBgTiles), 0);
CopyToBgTilemapBufferRect(3, gFameCheckerBg3Tilemap, 0, 0, 32, 32);
LoadPalette(gFameCheckerBgPals + 0x00, 0x00, 0x40);
LoadPalette(gFameCheckerBgPals + 0x10, 0x10, 0x20);
CopyToBgTilemapBufferRect(2, gFameCheckerBg2Tilemap, 0, 0, 32, 32);
CopyToBgTilemapBufferRect_ChangePalette(1, sFameCheckerTilemap, 30, 0, 32, 32, 0x11);
LoadPalette(stdpal_get(2), 0xF0, 0x20);
gMain.state++;