foxygit / doom Log in
commit 7bd251b206105a611a9565af397b7fec548e669b
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue Jan 29 19:58:39 2019 +0200
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Tue Jan 29 19:58:39 2019 +0200

    strife: Make cursorName contents const
---
 src/strife/m_menu.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/strife/m_menu.c b/src/strife/m_menu.c
index c3724986..31d2ee07 100644
--- a/src/strife/m_menu.c
+++ b/src/strife/m_menu.c
@@ -146,8 +146,8 @@ short		whichCursor;		// which skull to draw

 // graphic name of cursors
 // haleyjd 08/27/10: [STRIFE] M_SKULL* -> M_CURS*
-char    *cursorName[8] = {"M_CURS1", "M_CURS2", "M_CURS3", "M_CURS4",
-                          "M_CURS5", "M_CURS6", "M_CURS7", "M_CURS8" };
+const char *cursorName[8] = {"M_CURS1", "M_CURS2", "M_CURS3", "M_CURS4",
+                             "M_CURS5", "M_CURS6", "M_CURS7", "M_CURS8" };

 // haleyjd 20110210 [STRIFE]: skill level for menus
 int menuskill;