From 4b4c5a403b01ab57042a5ad61097a300d319ae4f Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sun, 14 Jan 2007 19:59:25 +0000 Subject: (svn r8129) -Codechange: Change data tables to use split off palette map. And include a file missed last time... --- src/table/water_land.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/table/water_land.h') diff --git a/src/table/water_land.h b/src/table/water_land.h index 96cef5f39..a27eb3510 100644 --- a/src/table/water_land.h +++ b/src/table/water_land.h @@ -15,27 +15,27 @@ typedef struct WaterDrawTileStruct { static const WaterDrawTileStruct _shipdepot_display_seq_1[] = { BEGIN(0xFDD), - { 0, 15, 0, 16, 1, 0x14, 0xFE8 | PALETTE_MODIFIER_COLOR }, + { 0, 15, 0, 16, 1, 0x14, 0xFE8 | (1 << PALETTE_MODIFIER_COLOR) }, END(0) }; static const WaterDrawTileStruct _shipdepot_display_seq_2[] = { BEGIN(0xFDD), { 0, 0, 0, 16, 1, 0x14, 0xFEA }, - { 0, 15, 0, 16, 1, 0x14, 0xFE6 | PALETTE_MODIFIER_COLOR }, + { 0, 15, 0, 16, 1, 0x14, 0xFE6 | (1 << PALETTE_MODIFIER_COLOR) }, END(0) }; static const WaterDrawTileStruct _shipdepot_display_seq_3[] = { BEGIN(0xFDD), - { 15, 0, 0, 1, 0x10, 0x14, 0xFE9 | PALETTE_MODIFIER_COLOR }, + { 15, 0, 0, 1, 0x10, 0x14, 0xFE9 | (1 << PALETTE_MODIFIER_COLOR) }, END(0) }; static const WaterDrawTileStruct _shipdepot_display_seq_4[] = { BEGIN(0xFDD), { 0, 0, 0, 1, 16, 0x14, 0xFEB }, - { 15, 0, 0, 1, 16, 0x14, 0xFE7 | PALETTE_MODIFIER_COLOR }, + { 15, 0, 0, 1, 16, 0x14, 0xFE7 | (1 << PALETTE_MODIFIER_COLOR) }, END(0) }; -- cgit v1.2.3-54-g00ecf