diff options
| author | Idain <luiscarlosholguinperez@outlook.com> | 2021-03-10 08:39:29 -0400 |
|---|---|---|
| committer | Idain <luiscarlosholguinperez@outlook.com> | 2021-03-10 08:39:29 -0400 |
| commit | 6425f70b47bcfdc192a4f75b0d6bc50f69ba6599 (patch) | |
| tree | e6c88c7cd276e15943b81f25134a3c951d07ba79 | |
| parent | cc717a017f35e938f14081dd559bea001883a062 (diff) | |
Updated to reflect the new changes made to the main repo
| -rw-r--r-- | Make-evening-the-fourth-time-of-day.md | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Make-evening-the-fourth-time-of-day.md b/Make-evening-the-fourth-time-of-day.md index 117fd9d..734307c 100644 --- a/Make-evening-the-fourth-time-of-day.md +++ b/Make-evening-the-fourth-time-of-day.md @@ -210,7 +210,7 @@ And create **gfx/overworld/npc_sprites_darkness.pal**: + RGB 01,01,02, 00,00,00, 00,00,00, 00,00,00 ; rock ``` -Finally, edit [gfx/tilesets/roofs.pal](../blob/master/gfx/tilesets/roofs.pal): +Edit [gfx/tilesets/roofs.pal](../blob/master/gfx/tilesets/roofs.pal): ```diff ; group 0 (unused) @@ -349,6 +349,16 @@ Finally, edit [gfx/tilesets/roofs.pal](../blob/master/gfx/tilesets/roofs.pal): + RGB 25,10,20, 25,03,16 ; eve ``` +And finally edit [engine/gfx/color.asm](../blob/master/engine/gfx/color.asm): + +```diff + RoofPals: +- table_width PAL_COLOR_SIZE * 2 * 2, RoofPals ++ table_width PAL_COLOR_SIZE * 3 * 2, RoofPals + INCLUDE "gfx/tilesets/roofs.pal" + assert_table_length NUM_MAP_GROUPS + 1 +``` + We'll write code to handle these new colors soon; but first let's fix Flash. |
