mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
19 lines
607 B
C
19 lines
607 B
C
|
/*******************************************************************************
|
||
|
* colors.h - SNES9x PS3
|
||
|
*
|
||
|
* Created on: Oct 20, 2010
|
||
|
********************************************************************************/
|
||
|
|
||
|
// define some colours for dbgfont output (remember it uses ABGR colour format)
|
||
|
#define WHITE 0xffffffffu
|
||
|
#define RED 0xff0000ffu
|
||
|
#define GREEN 0xff00ff00u
|
||
|
#define BLUE 0xffff0000u
|
||
|
#define YELLOW 0xff00ffffu
|
||
|
#define PURPLE 0xffff00ffu
|
||
|
#define CYAN 0xffffff00u
|
||
|
#define ORANGE 0xff0063ffu
|
||
|
#define SILVER 0xff8c848cu
|
||
|
#define LIGHTBLUE 0xFFFFE0E0U
|
||
|
#define LIGHTORANGE 0xFFE0EEFFu
|