foxygit / doom Log in
commit 3f7732e0e7fe70a7378ee9d56c046f502a69a342
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Sat May 26 16:09:50 2018 +0300
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Sat May 26 16:24:15 2018 +0300

    video: Make window_title variable const
---
 src/i_video.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/i_video.c b/src/i_video.c
index 9aa5b059..667e61ba 100644
--- a/src/i_video.c
+++ b/src/i_video.c
@@ -55,7 +55,7 @@ static SDL_Renderer *renderer;

 // Window title

-static char *window_title = "";
+static const char *window_title = "";

 // These are (1) the 320x200x8 paletted buffer that we draw to (i.e. the one
 // that holds I_VideoBuffer), (2) the 320x200x32 RGBA intermediate buffer that