mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Added new skincolor for use in color profile menu.
This commit is contained in:
parent
a92b116c77
commit
dccdffa537
4 changed files with 6 additions and 1 deletions
|
|
@ -4397,6 +4397,8 @@ const char *COLOR_ENUMS[] = {
|
||||||
"INTERMISSION1",
|
"INTERMISSION1",
|
||||||
"INTERMISSION2",
|
"INTERMISSION2",
|
||||||
"INTERMISSION3",
|
"INTERMISSION3",
|
||||||
|
|
||||||
|
"COLORPROFILE",
|
||||||
};
|
};
|
||||||
|
|
||||||
const char *const KARTHUD_LIST[] = {
|
const char *const KARTHUD_LIST[] = {
|
||||||
|
|
|
||||||
|
|
@ -388,6 +388,8 @@ typedef enum
|
||||||
SKINCOLOR_INTERMISSION2,
|
SKINCOLOR_INTERMISSION2,
|
||||||
SKINCOLOR_INTERMISSION3,
|
SKINCOLOR_INTERMISSION3,
|
||||||
|
|
||||||
|
SKINCOLOR_COLORPROFILE,
|
||||||
|
|
||||||
SKINCOLOR_FIRSTFREESLOT,
|
SKINCOLOR_FIRSTFREESLOT,
|
||||||
SKINCOLOR_LASTFREESLOT = SKINCOLOR_FIRSTFREESLOT + NUMCOLORFREESLOTS - 1,
|
SKINCOLOR_LASTFREESLOT = SKINCOLOR_FIRSTFREESLOT + NUMCOLORFREESLOTS - 1,
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22265,6 +22265,7 @@ skincolor_t skincolors[MAXSKINCOLORS] = {
|
||||||
{"Intermission 1", { 0, 80, 80, 80, 81, 81, 81, 84, 84, 85, 86, 86, 87, 87, 246, 248}, SKINCOLOR_NONE, 0, 0, false, UINT16_MAX}, // SKINCOLOR_INTERMISSION1
|
{"Intermission 1", { 0, 80, 80, 80, 81, 81, 81, 84, 84, 85, 86, 86, 87, 87, 246, 248}, SKINCOLOR_NONE, 0, 0, false, UINT16_MAX}, // SKINCOLOR_INTERMISSION1
|
||||||
{"Intermission 2", { 0, 81, 81, 81, 88, 88, 88, 89, 89, 140, 140, 141, 141, 142, 142, 142}, SKINCOLOR_NONE, 0, 0, false, UINT16_MAX}, // SKINCOLOR_INTERMISSION2
|
{"Intermission 2", { 0, 81, 81, 81, 88, 88, 88, 89, 89, 140, 140, 141, 141, 142, 142, 142}, SKINCOLOR_NONE, 0, 0, false, UINT16_MAX}, // SKINCOLOR_INTERMISSION2
|
||||||
{"Intermission 3", { 0, 144, 144, 144, 129, 129, 129, 130, 130, 146, 147, 147, 14, 16, 17, 19}, SKINCOLOR_NONE, 0, 0, false, UINT16_MAX}, // SKINCOLOR_INTERMISSION3
|
{"Intermission 3", { 0, 144, 144, 144, 129, 129, 129, 130, 130, 146, 147, 147, 14, 16, 17, 19}, SKINCOLOR_NONE, 0, 0, false, UINT16_MAX}, // SKINCOLOR_INTERMISSION3
|
||||||
|
{"Color Profile", { 35, 35, 73, 73, 112, 112, 255, 255, 152, 152, 181, 181, 181, 181, 0, 0}, SKINCOLOR_NONE, 0, 0, false, UINT16_MAX}, // SKINCOLOR_COLORPROFILE
|
||||||
};
|
};
|
||||||
|
|
||||||
/** Patches the mobjinfo, state, and skincolor tables.
|
/** Patches the mobjinfo, state, and skincolor tables.
|
||||||
|
|
|
||||||
|
|
@ -107,7 +107,7 @@ menu_t OPTIONS_VideoColorProfileDef = {
|
||||||
0,
|
0,
|
||||||
OPTIONS_VideoColorProfile,
|
OPTIONS_VideoColorProfile,
|
||||||
48, 80-8,
|
48, 80-8,
|
||||||
SKINCOLOR_LAVENDER, 0,
|
SKINCOLOR_COLORPROFILE, 0,
|
||||||
MBF_DRAWBGWHILEPLAYING,
|
MBF_DRAWBGWHILEPLAYING,
|
||||||
NULL,
|
NULL,
|
||||||
2, 5,
|
2, 5,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue