setup: Make mission_config_t string members const
This commit is contained in:
parent
8f82960fbe
commit
c5d8067d38
1 changed files with 5 additions and 5 deletions
|
|
@ -44,13 +44,13 @@ static const iwad_t **iwads;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
char *label;
|
const char *label;
|
||||||
GameMission_t mission;
|
GameMission_t mission;
|
||||||
int mask;
|
int mask;
|
||||||
char *name;
|
const char *name;
|
||||||
char *config_file;
|
const char *config_file;
|
||||||
char *extra_config_file;
|
const char *extra_config_file;
|
||||||
char *executable;
|
const char *executable;
|
||||||
} mission_config_t;
|
} mission_config_t;
|
||||||
|
|
||||||
// Default mission to fall back on, if no IWADs are found at all:
|
// Default mission to fall back on, if no IWADs are found at all:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue