hexen: Fix constness issues in DrawClassMenu
This commit is contained in:
parent
a901b7a5b6
commit
3bd1270c48
1 changed files with 2 additions and 2 deletions
|
|
@ -596,12 +596,12 @@ static void DrawMainMenu(void)
|
|||
static void DrawClassMenu(void)
|
||||
{
|
||||
pclass_t class;
|
||||
static char *boxLumpName[3] = {
|
||||
static const char *boxLumpName[3] = {
|
||||
"m_fbox",
|
||||
"m_cbox",
|
||||
"m_mbox"
|
||||
};
|
||||
static char *walkLumpName[3] = {
|
||||
static const char *walkLumpName[3] = {
|
||||
"m_fwalk1",
|
||||
"m_cwalk1",
|
||||
"m_mwalk1"
|
||||
|
|
|
|||
Loading…
Reference in a new issue