commit 3bd1270c4861b9a139275d088021c28d13e09216
Author: Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue Aug 7 18:45:58 2018 +0300
Commit: Turo Lamminen <turotl@gmail.com>
CommitDate: Tue Aug 7 18:45:58 2018 +0300
hexen: Fix constness issues in DrawClassMenu
---
src/hexen/mn_menu.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/hexen/mn_menu.c b/src/hexen/mn_menu.c
index de02490a..059f45b3 100644
--- a/src/hexen/mn_menu.c
+++ b/src/hexen/mn_menu.c
@@ -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"