From 9afe24490333799a3cf4b237534af1275223751c Mon Sep 17 00:00:00 2001 From: Turo Lamminen Date: Tue, 11 Dec 2018 18:35:06 +0200 Subject: [PATCH] hexen: Fix const correctness issue in GetFinaleText --- src/hexen/f_finale.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hexen/f_finale.c b/src/hexen/f_finale.c index 29789de8..f2dfcc4c 100644 --- a/src/hexen/f_finale.c +++ b/src/hexen/f_finale.c @@ -366,10 +366,10 @@ void F_Drawer(void) static char *GetFinaleText(int sequence) { - char *msgLumpName; + const char *msgLumpName; int msgSize; int msgLump; - static char *winMsgLumpNames[] = { + static const char *winMsgLumpNames[] = { "win1msg", "win2msg", "win3msg"