foxygit / doom Log in
commit 8c763b6ea9b5abfee9dd83f293135c93b68f847e
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Sat Jul 28 15:50:08 2018 +0300
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Tue Jul 31 18:30:08 2018 +0300

    doom: Make skullName contents const
---
 src/doom/m_menu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/doom/m_menu.c b/src/doom/m_menu.c
index 6edd699f..304534e9 100644
--- a/src/doom/m_menu.c
+++ b/src/doom/m_menu.c
@@ -167,7 +167,7 @@ short		whichSkull;		// which skull to draw

 // graphic name of skulls
 // warning: initializer-string for array of chars is too long
-char    *skullName[2] = {"M_SKULL1","M_SKULL2"};
+const char *skullName[2] = {"M_SKULL1","M_SKULL2"};

 // current menudef
 menu_t*	currentMenu;