diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2016-12-02 19:06:22 +0100 |
---|---|---|
committer | YamaArashi <YamaArashi@users.noreply.github.com> | 2016-12-02 10:06:22 -0800 |
commit | 1f222c04ef1d10ff5a5c6bb98cd4380ecf2bba86 (patch) | |
tree | 573d6368233110b17292e498f49532c1c9244404 /src/palette.c | |
parent | 4258e60771aa9fdabd678930eca534423bd371b8 (diff) |
[WIP] Extract all external function declarations to headers (#114)
* Extract other external function declarations
* Fix GBA compilation
* Revert `sub_803C434` to asm
Diffstat (limited to 'src/palette.c')
-rw-r--r-- | src/palette.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/palette.c b/src/palette.c index 53ade0105..bf93a036c 100644 --- a/src/palette.c +++ b/src/palette.c @@ -1,5 +1,7 @@ #include "global.h" #include "palette.h" +#include "asm.h" +#include "blend_palette.h" #include "decompress.h" enum @@ -38,8 +40,6 @@ struct PaletteStruct u8 ps_field_9; }; -extern void BlendPalette(u16, u16, u8, u16); - EWRAM_DATA u16 gPlttBufferUnfaded[0x200] = {0}; EWRAM_DATA u16 gPlttBufferFaded[0x200] = {0}; EWRAM_DATA static struct PaletteStruct sPaletteStructs[0x10] = {0}; |