foxygit / doom Log in
commit acb2cc46902c7a8e7bb75e988a24e0ef2c4d3fe1
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue May 15 20:05:58 2018 +0300
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Tue May 15 20:05:58 2018 +0300

    strife: Make messageString variable const
---
 src/strife/m_menu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/strife/m_menu.c b/src/strife/m_menu.c
index 0e818bd8..727c9606 100644
--- a/src/strife/m_menu.c
+++ b/src/strife/m_menu.c
@@ -93,7 +93,7 @@ int			quickSaveSlot;
  // 1 = message to be printed
 int			messageToPrint;
 // ...and here is the message string!
-char*			messageString;
+const char		*messageString;

 // message x & y
 int			messx;