foxygit / doom Log in
commit db6477778487de22eb61152ef677847002b698f3
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Sat Dec 8 16:34:15 2018 +0200
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Sat Dec 8 16:34:15 2018 +0200

    heretic: Make KillersText contents const
---
 src/heretic/in_lude.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/heretic/in_lude.c b/src/heretic/in_lude.c
index a54a3797..7ae120e7 100644
--- a/src/heretic/in_lude.c
+++ b/src/heretic/in_lude.c
@@ -95,7 +95,7 @@ static signed int totalFrags[MAXPLAYERS];
 static fixed_t dSlideX[MAXPLAYERS];
 static fixed_t dSlideY[MAXPLAYERS];

-static char *KillersText[] = { "K", "I", "L", "L", "E", "R", "S" };
+static const char *KillersText[] = { "K", "I", "L", "L", "E", "R", "S" };

 extern const char *LevelNames[];