diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-02-04 23:06:04 -0500 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-02-04 23:06:04 -0500 |
commit | ecfdc57e1cff1fa34ff7edcf7524aeadbc265b69 (patch) | |
tree | 123155f492599caf4597b6fc812a0a064d3962bd /include/pc_screen_effect.h | |
parent | 9776f51f0643a8d988fcd5fc2ac404a7ea285235 (diff) | |
parent | f1f6c7337f4f2f002b456468b0ccc327fc494d02 (diff) |
Merge branch 'master' into fix_nonmatching
Diffstat (limited to 'include/pc_screen_effect.h')
-rw-r--r-- | include/pc_screen_effect.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/pc_screen_effect.h b/include/pc_screen_effect.h new file mode 100644 index 000000000..d3f6d22de --- /dev/null +++ b/include/pc_screen_effect.h @@ -0,0 +1,21 @@ +#ifndef GUARD_PC_SCREEN_EFFECT_H +#define GUARD_PC_SCREEN_EFFECT_H + +struct PCScreenEffectStruct +{ + /*0x00*/ u16 tileTag; + /*0x02*/ u16 paletteTag; + /*0x04*/ u16 unk04; + /*0x06*/ u16 unk06; + /*0x08*/ u16 unk08; + /*0x0A*/ u16 unk0A; + /*0x0C*/ s16 unk0C; + /*0x10*/ u32 selectedPalettes; +}; + +void sub_80C5CD4(struct PCScreenEffectStruct *unkStruct); +bool8 sub_80C5DCC(void); +void sub_80C5E38(struct PCScreenEffectStruct *unkStruct); +bool8 sub_80C5F98(void); + +#endif //GUARD_PC_SCREEN_EFFECT_H |