diff options
author | YamaArashi <shadow962@live.com> | 2016-06-09 01:32:19 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-06-09 01:32:19 -0700 |
commit | a37de9f76364f3ed95c49ca1417ee01cd4d617b1 (patch) | |
tree | c8039e8fc47394076faad856abb859c5bb39fcf3 /src/text.c | |
parent | 54c60e33cb69514228f4bfb3d65b2668c824e449 (diff) |
double-colon global labels in preproc; misc other stuff
Diffstat (limited to 'src/text.c')
-rw-r--r-- | src/text.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/text.c b/src/text.c index c6455f1f0..276a2ccfb 100644 --- a/src/text.c +++ b/src/text.c @@ -117,7 +117,7 @@ struct ShiftAmount u32 right; }; -extern void gpu_pal_apply(const u16 *, u16, u32); +extern void LoadPalette(const u16 *, u16, u32); extern void sub_8075474(u16); extern void audio_play(u16); extern u8 mplay_has_finished_maybe(void); @@ -1800,7 +1800,7 @@ static void ClearBGMem(struct WindowConfig *winConfig) void LoadFontDefaultPalette(struct WindowConfig *winConfig) { - gpu_pal_apply(gFontDefaultPalette, 16 * winConfig->paletteNum, 32); + LoadPalette(gFontDefaultPalette, 16 * winConfig->paletteNum, 32); } void SetUpWindowConfig(struct WindowConfig *winConfig) |