From a30d695331b33a3a43b70539b0577f5c7f6c6bca Mon Sep 17 00:00:00 2001 From: entrpntr Date: Thu, 14 May 2020 12:05:34 -0400 Subject: Clean up some palette stuff, update main.asm and layout.link. --- engine/gfx/color.asm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'engine') 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 -- cgit v1.2.3