foxygit / doom Log in
commit 1c828b08d37d33e4a7448b7c403efcc2ad50c12d
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Sat Dec 8 15:38:48 2018 +0200
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Sat Dec 8 15:41:50 2018 +0200

    heretic: Fix const correctness issue in AM_Drawer
---
 src/heretic/am_map.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/heretic/am_map.c b/src/heretic/am_map.c
index 5010b728..9d2c51bb 100644
--- a/src/heretic/am_map.c
+++ b/src/heretic/am_map.c
@@ -1500,7 +1500,7 @@ void AM_drawCrosshair(int color)

 void AM_Drawer(void)
 {
-    char *level_name;
+    const char *level_name;
     int numepisodes;

     if (!automapactive)