diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-09-01 12:24:08 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-09-01 12:24:08 -0400 |
commit | aedf8a8655dff5527fd0357ffe99ae69ce958a10 (patch) | |
tree | 828b89ee32a4a3802defb1c4eb7a74326f5fc656 | |
parent | f90f4bc62a664bb24103b8d4a286d519de6b0053 (diff) |
Pan Docs: "When sending three or more data sets, data is continued in further packet(s). Unused bytes at the end of the last packet should be set to zero."
-rw-r--r-- | gfx/sgb/blk_packets.asm | 24 | ||||
-rw-r--r-- | gfx/sgb/pal_packets.asm | 6 |
2 files changed, 15 insertions, 15 deletions
diff --git a/gfx/sgb/blk_packets.asm b/gfx/sgb/blk_packets.asm index ce28fa29..ae95d116 100644 --- a/gfx/sgb/blk_packets.asm +++ b/gfx/sgb/blk_packets.asm @@ -16,12 +16,12 @@ ENDM BlkPacket_9ee5: attr_blk 1 attr_blk_data %011, 0,0,0, 00,00, 19,17 - ds 8 + ds 8, 0 BlkPacket_GSIntroJigglypuffPikachu: attr_blk 1 attr_blk_data %111, 1,1,0, 00,10, 19,13 - ds 8 + ds 8, 0 BlkPacket_Battle: attr_blk 5 @@ -34,32 +34,32 @@ BlkPacket_Battle: BlkPacket_StatsScreen: attr_blk 1 attr_blk_data %111, 1,1,0, 00,00, 06,06 ; mon: pal 1 - ds 8 + ds 8, 0 BlkPacket_MoveList: attr_blk 1 attr_blk_data %110, 1,1,0, 11,01, 19,02 - ds 8 + ds 8, 0 BlkPacket_Pokedex_PC: attr_blk 1 attr_blk_data %111, 1,1,0, 00,01, 07,07 ; mon: pal 1 - ds 8 + ds 8, 0 BlkPacket_9f55: attr_blk 1 attr_blk_data %111, 1,1,0, 01,04, 07,10 - ds 8 + ds 8, 0 BlkPacket_Pokedex_5x5: attr_blk 1 attr_blk_data %111, 1,1,0, 01,01, 05,05 - ds 8 + ds 8, 0 BlkPacket_PokedexUnownMode: attr_blk 1 attr_blk_data %111, 1,1,0, 07,05, 13,11 ; unown: pal 1 - ds 8 + ds 8, 0 BlkPacket_SlotMachine: attr_blk 5 @@ -78,21 +78,21 @@ BlkPacket_PartyMenu: attr_blk_data %010, 0,0,0, 12,07, 18,08 attr_blk_data %010, 0,0,0, 12,09, 18,10 attr_blk_data %010, 0,0,0, 12,11, 18,12 - ds 4 + ds 4, 0 BlkPacket_GSTitleScreen: attr_blk 2 attr_blk_data %111, 0,0,3, 00,00, 19,06 attr_blk_data %010, 0,1,0, 05,06, 14,06 - ds 2 + ds 2, 0 BlkPacket_BetaTitleScreen: attr_blk 1 attr_blk_data %111, 0,0,1, 00,00, 19,05 ; logo - ds 8 + ds 8, 0 BlkPacket_MagnetTrain: attr_blk 2 attr_blk_data %111, 2,2,0, 00,04, 19,13 ; fence attr_blk_data %011, 1,1,0, 00,06, 19,11 ; train - ds 2 + ds 2, 0 diff --git a/gfx/sgb/pal_packets.asm b/gfx/sgb/pal_packets.asm index e23505a7..906d1ff1 100644 --- a/gfx/sgb/pal_packets.asm +++ b/gfx/sgb/pal_packets.asm @@ -5,7 +5,7 @@ sgb_pal_set: MACRO db (SGB_PAL_SET << 3) + 1 dw PREDEFPAL_\1, PREDEFPAL_\2, PREDEFPAL_\3, PREDEFPAL_\4 - ds 7 + ds 7, 0 ENDM sgb_pal01: MACRO @@ -85,7 +85,7 @@ PalPacket_a155: rept 6 RGB 00, 00, 00 endr - ds 1 + db 0 PalPacket_a165: sgb_pal23 @@ -93,4 +93,4 @@ PalPacket_a165: rept 6 RGB 00, 00, 00 endr - ds 1 + db 0 |