mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-06-01 05:01:11 -05:00
14 lines
294 B
C
14 lines
294 B
C
#ifndef POKEHEARTGOLD_CONSTANTS_GX_H
|
|
#define POKEHEARTGOLD_CONSTANTS_GX_H
|
|
|
|
#include <nitro/gx/gxcommon.h>
|
|
|
|
#define RGB(r, g, b) (GX_RGB(r, g, b))
|
|
|
|
#define RGB_BLACK RGB(0, 0, 0)
|
|
#define RGB_WHITE RGB(31, 31, 31)
|
|
|
|
#define GF_GX_CLEARCOLORDEPTH_MAX 0x7FFF
|
|
|
|
#endif // POKEHEARTGOLD_CONSTANTS_GX_H
|