foxygit / doom Log in
commit d577415903b45bc468fca40326d304bd7dcccd1f
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue May 15 18:42:25 2018 +0300
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Tue May 15 18:42:25 2018 +0300

    heretic: Fix const correctness issues in P_InitPicAnims
---
 src/heretic/p_spec.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/heretic/p_spec.c b/src/heretic/p_spec.c
index 4c7db554..03bec111 100644
--- a/src/heretic/p_spec.c
+++ b/src/heretic/p_spec.c
@@ -253,8 +253,8 @@ void P_InitTerrainTypes(void)

 void P_InitPicAnims(void)
 {
-    char *startname;
-    char *endname;
+    const char *startname;
+    const char *endname;
     int i;

     lastanim = anims;