foxygit / doom Log in
commit 05836d1021d636d1199b50f033b18db59eb12496
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue Dec 11 18:46:57 2018 +0200
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Tue Dec 11 18:46:57 2018 +0200

    hexen: Make pagename variable const
---
 src/hexen/h2_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/hexen/h2_main.c b/src/hexen/h2_main.c
index 8a11da11..a63b14c9 100644
--- a/src/hexen/h2_main.c
+++ b/src/hexen/h2_main.c
@@ -119,7 +119,7 @@ int maxplayers = MAXPLAYERS;
 static int WarpMap;
 static int demosequence;
 static int pagetic;
-static char *pagename;
+static const char *pagename;
 static char *SavePathConfig;

 // CODE --------------------------------------------------------------------