commit 26eb6f22b8d983448c193d8771efb58e64e3625f
Author: Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue Jan 29 19:39:02 2019 +0200
Commit: Turo Lamminen <turotl@gmail.com>
CommitDate: Tue Jan 29 19:39:02 2019 +0200
strife: Make mobjinfo_t name member const
---
src/strife/info.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/strife/info.h b/src/strife/info.h
index 940c4556..a2594746 100644
--- a/src/strife/info.h
+++ b/src/strife/info.h
@@ -2211,7 +2211,7 @@ typedef struct
int damage;
int activesound;
int flags;
- char* name;
+ const char *name;
} mobjinfo_t;
extern mobjinfo_t mobjinfo[NUMMOBJTYPES];