commit a4d9fa1b48938db4384225b7576b50131dbd4507
Author: Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue May 15 20:12:45 2018 +0300
Commit: Turo Lamminen <turotl@gmail.com>
CommitDate: Tue May 15 20:12:45 2018 +0300
strife: Fix const correctness issue in P_DialogStart
---
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 12397fee..618c81ea 100644
--- a/src/strife/p_dialog.c
+++ b/src/strife/p_dialog.c
@@ -1261,7 +1261,7 @@ void P_DialogStart(player_t *player)
int i = 0;
int pic;
int rnd = 0;
- char* byetext;
+ const char *byetext;
int jumptoconv;
if(menuactive || netgame)