ref: 8c763b6ea9b5abfee9dd83f293135c93b68f847e
parent: 402de607125c70919e6b0f5c850c16ba8853a22f
author: Turo Lamminen <turotl@gmail.com>
date: Sat Jul 28 11:50:08 EDT 2018
doom: Make skullName contents const
--- a/src/doom/m_menu.c
+++ b/src/doom/m_menu.c
@@ -167,7 +167,7 @@
// 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;