mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Freeslot moment!
This commit is contained in:
parent
53c7df4818
commit
317191ec7c
1 changed files with 3 additions and 0 deletions
|
@ -386,6 +386,7 @@ enum TypeOfLevel
|
||||||
};
|
};
|
||||||
|
|
||||||
// Gametypes
|
// Gametypes
|
||||||
|
#define NUMGAMETYPEFREESLOTS 512
|
||||||
enum GameType
|
enum GameType
|
||||||
{
|
{
|
||||||
GT_COOP = 0, // also used in single player
|
GT_COOP = 0, // also used in single player
|
||||||
|
@ -400,6 +401,8 @@ enum GameType
|
||||||
|
|
||||||
GT_CTF, // capture the flag
|
GT_CTF, // capture the flag
|
||||||
|
|
||||||
|
GT_FIRSTFREESLOT,
|
||||||
|
GT_LASTFREESLOT = GT_FIRSTFREESLOT + NUMGAMETYPEFREESLOTS - 1,
|
||||||
NUMGAMETYPES
|
NUMGAMETYPES
|
||||||
};
|
};
|
||||||
// If you alter this list, update dehacked.c, MISC_ChangeGameTypeMenu in m_menu.c, and Gametype_Names in g_game.c
|
// If you alter this list, update dehacked.c, MISC_ChangeGameTypeMenu in m_menu.c, and Gametype_Names in g_game.c
|
||||||
|
|
Loading…
Reference in a new issue