hexen: Fix constness issues in DrawClassMenu

This commit is contained in:
Turo Lamminen 2018-08-07 18:45:58 +03:00
parent a901b7a5b6
commit 3bd1270c48

View file

@ -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"