mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-25 06:06:29 -05:00
14 lines
301 B
C
14 lines
301 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
|