foxygit / doom Log in
commit 73e918793d0f2747bed957fd251de276be2e0423
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue Jan 29 20:00:22 2019 +0200
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Tue Jan 29 20:00:22 2019 +0200

    strife: Make terraintype_t flat member const
---
 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 697e490e..174ff622 100644
--- a/src/strife/p_spec.c
+++ b/src/strife/p_spec.c
@@ -196,7 +196,7 @@ void P_InitPicAnims (void)
 // villsa [STRIFE] terrain type definitions
 typedef struct
 {
-    char*   flat;
+    const char *flat;
     int     type;
     int     num;
 } terraintype_t;