a bit more of contest painting effect

This commit is contained in:
DizzyEggg
2018-12-29 12:10:06 +01:00
committed by Marcus Huderle
parent 34243bbe1d
commit 55e44b0951
5 changed files with 176 additions and 462 deletions

View File

@@ -2,6 +2,7 @@
#define GUARD_RGB_H
#define RGB(r, g, b) ((r) | ((g) << 5) | ((b) << 10))
#define RGB2(r, g, b) (((b) << 10) | ((g) << 5) | (r))
#define _RGB(r, g, b) ((((b) & 0x1F) << 10) + (((g) & 0x1F) << 5) + ((r) & 0x1F))
#define RGB_BLACK RGB(0, 0, 0)
@@ -12,6 +13,6 @@
#define RGB_YELLOW RGB(31, 31, 0)
#define RGB_MAGENTA RGB(31, 0, 31)
#define RGB_CYAN RGB(0, 31, 31)
#define RGB_WHITEALPHA RGB_WHITE | 0x8000
#define RGB_WHITEALPHA (RGB_WHITE | 0x8000)
#endif // GUARD_RGB_H

View File

@@ -1,7 +1,7 @@
#ifndef GUARD_CONTEST_PAINTING_EFFECTS_H
#define GUARD_CONTEST_PAINTING_EFFECTS_H
struct Unk030061A0
struct Unk03005E20
{
u8 var_0;
u8 pad1[3];
@@ -21,8 +21,8 @@ struct Unk030061A0
u8 var_1F;
};
void sub_8124F2C(struct Unk030061A0 *);
void sub_81261A4(struct Unk030061A0 *);
void sub_8126058(struct Unk030061A0 *);
void sub_8124F2C(struct Unk03005E20 *);
void sub_81261A4(struct Unk03005E20 *);
void sub_8126058(struct Unk03005E20 *);
#endif