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

    strife: Fix const correctness issue in P_DialogDoChoice
---
 src/strife/p_dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/strife/p_dialog.c b/src/strife/p_dialog.c
index eb31301b..ed00259d 100644
--- a/src/strife/p_dialog.c
+++ b/src/strife/p_dialog.c
@@ -1152,7 +1152,7 @@ void P_DialogDoChoice(int choice)
 {
     int i = 0, nextdialog = 0;
     boolean candochoice = true;
-    char *message = NULL;
+    const char *message = NULL;
     mapdlgchoice_t *currentchoice;

     if(choice == -1)