diff options
author | entrpntr <entrpntr@gmail.com> | 2020-05-14 12:05:34 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-05-14 12:40:24 -0400 |
commit | a30d695331b33a3a43b70539b0577f5c7f6c6bca (patch) | |
tree | f8a5c19df375a94e8405da5a3f4736570728bc7c /engine/gfx | |
parent | 18ca6b3ea86e9eb65dd547649a2fcf3f3da28ab7 (diff) |
Clean up some palette stuff, update main.asm and layout.link.
Diffstat (limited to 'engine/gfx')
-rwxr-xr-x | engine/gfx/color.asm | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/engine/gfx/color.asm b/engine/gfx/color.asm index b60acac8..a39ab794 100755 --- a/engine/gfx/color.asm +++ b/engine/gfx/color.asm @@ -1237,7 +1237,11 @@ PartyMenuOBPals: INCLUDE "gfx/stats/party_menu_ob.pal" GSTitleBGPals: -INCLUDE "gfx/title/title_bg.pal" +IF DEF(_GOLD) +INCLUDE "gfx/title/title_bg_gold.pal" +ELIF DEF(_SILVER) +INCLUDE "gfx/title/title_bg_silver.pal" +ENDC GSTitleOBPals: INCLUDE "gfx/title/title_fg.pal" @@ -1249,4 +1253,8 @@ BetaPokerPals: INCLUDE "gfx/beta_poker/beta_poker.pal" SlotMachinePals: -INCLUDE "gfx/slots/slots.pal" +IF DEF(_GOLD) +INCLUDE "gfx/slots/slots_gold.pal" +ELIF DEF(_SILVER) +INCLUDE "gfx/slots/slots_silver.pal" +ENDC |