shithub: choc

Download patch

ref: 460c46283f9c888eeb12ff208d7e810d6b119dda
parent: 003395076f6428011f974028245bae80157f7578
author: Turo Lamminen <turotl@gmail.com>
date: Tue May 15 16:15:37 EDT 2018

strife: Fix const correctness issues in P_InitPicAnims

--- a/src/strife/p_spec.c
+++ b/src/strife/p_spec.c
@@ -157,7 +157,7 @@
     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);