mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Fix missing "RINGSNUMTICS" in dehacked.c
This fixes 16/20 of the HUD items in dehacked.c being off by one (Same case as the MFE_ flags thing) Also fixes dehacked.c mentioning "LAPS", which doesn't exist
This commit is contained in:
parent
842099b74d
commit
ea28304d8c
1 changed files with 2 additions and 2 deletions
|
@ -9143,6 +9143,7 @@ static const char *const HUDITEMS_LIST[] = {
|
|||
|
||||
"RINGS",
|
||||
"RINGSNUM",
|
||||
"RINGSNUMTICS",
|
||||
|
||||
"SCORE",
|
||||
"SCORENUM",
|
||||
|
@ -9162,8 +9163,7 @@ static const char *const HUDITEMS_LIST[] = {
|
|||
"TIMELEFTNUM",
|
||||
"TIMEUP",
|
||||
"HUNTPICS",
|
||||
"POWERUPS",
|
||||
"LAP"
|
||||
"POWERUPS"
|
||||
};
|
||||
|
||||
static const char *const MENUTYPES_LIST[] = {
|
||||
|
|
Loading…
Reference in a new issue