mirror of
https://github.com/pret/pokepinballrs.git
synced 2026-04-26 08:49:23 -05:00
Dump bonus field select stages gfx
This commit is contained in:
parent
60cbb1ca72
commit
26561946eb
10
data/rom.s
10
data/rom.s
|
|
@ -922,11 +922,13 @@ gUnknown_0807B2E0:: @ 0x0807B2E0
|
|||
gUnknown_0807BAE0:: @ 0x0807BAE0
|
||||
.incbin "baserom.gba", 0x7BAE0, 0x800
|
||||
|
||||
gUnknown_0807C2E0:: @ 0x0807C2E0
|
||||
.incbin "baserom.gba", 0x7C2E0, 0x200
|
||||
gBonusFieldSelectStages_Pals:: @ 0x0807C2E0
|
||||
.incbin "graphics/field_select/bonus_field_select_stages.gbapal"
|
||||
|
||||
gUnknown_0807C4E0:: @ 0x0807C4E0
|
||||
.incbin "baserom.gba", 0x7C4E0, 0x1820
|
||||
gBonusFieldSelectStages_Gfx:: @ 0x0807C4E0
|
||||
.incbin "graphics/field_select/bonus_field_select_stages.4bpp"
|
||||
|
||||
.incbin "baserom.gba", 0x7DCE0, 0x20
|
||||
|
||||
gUnknown_0807DD00:: @ 0x0807DD00
|
||||
.incbin "baserom.gba", 0x7DD00, 0x2000
|
||||
|
|
|
|||
BIN
graphics/field_select/bonus_field_select_stages.png
Normal file
BIN
graphics/field_select/bonus_field_select_stages.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.9 KiB |
|
|
@ -42,8 +42,8 @@ extern const u8 gBonusFieldMenuSelectionToField[];
|
|||
extern const u8 gUnknown_0807AAE0[];
|
||||
extern const u8 gUnknown_0807B2E0[];
|
||||
extern const u8 gUnknown_0807BAE0[];
|
||||
extern const u16 gUnknown_0807C2E0[];
|
||||
extern const u8 gUnknown_0807C4E0[];
|
||||
extern const u16 gBonusFieldSelectStages_Pals[];
|
||||
extern const u8 gBonusFieldSelectStages_Gfx[];
|
||||
|
||||
void sub_2710(void);
|
||||
void sub_29C8(void);
|
||||
|
|
@ -67,9 +67,9 @@ void LoadBonusFieldSelectGraphics(void)
|
|||
|
||||
gMain.unk16 = REG_DISPCNT;
|
||||
|
||||
DmaCopy16(3, gUnknown_0807C2E0, (void *)PLTT, 0x200);
|
||||
DmaCopy16(3, gBonusFieldSelectStages_Pals, (void *)PLTT, 0x200);
|
||||
DmaCopy16(3, gFieldSelectWindow_Gfx, (void *)(VRAM + 0x4000), 0x4000);
|
||||
DmaCopy16(3, gUnknown_0807C4E0, (void *)(VRAM + 0x8000), 0x1800);
|
||||
DmaCopy16(3, gBonusFieldSelectStages_Gfx, (void *)(VRAM + 0x8000), 0x1800);
|
||||
DmaCopy16(3, gUnknown_0807AAE0, (void *)VRAM, 0x800);
|
||||
DmaCopy16(3, gUnknown_0807B2E0, (void *)(VRAM + 0x800), 0x800);
|
||||
DmaCopy16(3, gUnknown_0807BAE0, (void *)(VRAM + 0x1000), 0x800);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user