foxygit / doom Log in
commit f2b49015d54806681e98eb7b7f19ae7001d58011
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue May 15 18:51:33 2018 +0300
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Tue May 15 18:51:33 2018 +0300

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

diff --git a/src/heretic/sb_bar.c b/src/heretic/sb_bar.c
index 9a737121..c73feb60 100644
--- a/src/heretic/sb_bar.c
+++ b/src/heretic/sb_bar.c
@@ -919,7 +919,7 @@ void DrawInventoryBar(void)

 void DrawFullScreenStuff(void)
 {
-    char *patch;
+    const char *patch;
     int i;
     int x;
     int temp;