foxygit / doom Log in
commit e1215041accbeb1812131763e0a668782f8a3e89
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue Apr 24 18:57:53 2018 +0300
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Tue Apr 24 18:57:53 2018 +0300

    doom: Make messageString variable 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 59c4ca08..75124e2d 100644
--- a/src/doom/m_menu.c
+++ b/src/doom/m_menu.c
@@ -87,7 +87,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;