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

    strife: Fix const correctness issues in P_InitPicAnims
---
 src/strife/p_spec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/strife/p_spec.c b/src/strife/p_spec.c
index dc060147..697e490e 100644
--- a/src/strife/p_spec.c
+++ b/src/strife/p_spec.c
@@ -157,7 +157,7 @@ void P_InitPicAnims (void)
     lastanim = anims;
     for (i=0 ; animdefs[i].istexture != -1 ; i++)
     {
-        char *startname, *endname;
+        const char *startname, *endname;

         startname = DEH_String(animdefs[i].startname);
         endname = DEH_String(animdefs[i].endname);