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

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

diff --git a/src/heretic/mn_menu.c b/src/heretic/mn_menu.c
index c0bfaf0a..8f7bbd45 100644
--- a/src/heretic/mn_menu.c
+++ b/src/heretic/mn_menu.c
@@ -615,7 +615,7 @@ static void DrawLoadMenu(void)

 static void DrawSaveMenu(void)
 {
-    char *title;
+    const char *title;

     title = DEH_String("SAVE GAME");