7dc95a0103
This commit undoes most of PokeCodec's PRs after the debate in chat. Some harmless or completely superseded PRs have been left alone, as there is not much benefit in attempting to undo them. Reverts #1104, #1108, #1115, #1118, #1119, #1124, #1126, #1127, #1132, #1136, #1137, #1139, #1140, #1144, #1148, #1149, #1150, #1153, #1155, #1177, #1179, #1180, #1181, #1182 and #1183.
18 lines
559 B
C
18 lines
559 B
C
#ifndef GUARD_RGB_H
|
|
#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)
|
|
#define RGB_WHITE RGB(31, 31, 31)
|
|
#define RGB_RED RGB(31, 0, 0)
|
|
#define RGB_GREEN RGB(0, 31, 0)
|
|
#define RGB_BLUE RGB(0, 0, 31)
|
|
#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)
|
|
|
|
#endif // GUARD_RGB_H
|