diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-10-30 23:03:41 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-10-30 23:03:41 -0400 |
commit | c3f5e8b58efab4a2c8fea348d70877bfb32fa83c (patch) | |
tree | b7f16b16652faa0a04ed00278cebe5287d1c9110 | |
parent | fd24d1a3d0ac503a150c3f5cb21aab382b19865c (diff) |
Relocate the beta poker WRAM labels to avoid a NEXTU
-rw-r--r-- | wram.asm | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -373,6 +373,13 @@ wCardFlipFaceUpCard:: db wDiscardPile:: ds 4 * 6 wDiscardPileEnd:: +; beta poker game +wBetaPokerSGBPals:: db + ds 2 +wBetaPokerSGBAttr:: db +wBetaPokerSGBCol:: db +wBetaPokerSGBRow:: db + NEXTU ; unused memory game wMemoryGameCards:: ds 9 * 5 @@ -388,15 +395,6 @@ wMemoryGameCounter:: db wMemoryGameNumCardsMatched:: db NEXTU -; beta poker game - ds 50 -wBetaPokerSGBPals:: db - ds 2 -wBetaPokerSGBAttr:: db -wBetaPokerSGBCol:: db -wBetaPokerSGBRow:: db - -NEXTU ; unown puzzle wPuzzlePieces:: ds 6 * 6 ENDU |