foxygit / doom Log in
commit ce6eafceb8d2ad3660194a913a45dcbf053c549d
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Sat May 5 17:35:19 2018 +0300
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Sat May 5 17:41:40 2018 +0300

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

diff --git a/src/heretic/f_finale.c b/src/heretic/f_finale.c
index cadbbb75..6bc5368f 100644
--- a/src/heretic/f_finale.c
+++ b/src/heretic/f_finale.c
@@ -298,7 +298,7 @@ void F_DrawUnderwater(void)
 {
     static boolean underwawa = false;
     extern boolean askforquit;
-    char *lumpname;
+    const char *lumpname;
     byte *palette;

     // The underwater screen has its own palette, which is rather annoying.