foxygit / doom Log in
commit d1f6b7447d1cb7d30efe6c7ec79ebc629fe8c058
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Sat Jan 26 15:43:50 2019 +0200
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Tue Jan 29 18:49:25 2019 +0200

    strife: Make D_DrawText string parameter const
---
 src/strife/d_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/strife/d_main.c b/src/strife/d_main.c
index 29d84ca0..011408e7 100644
--- a/src/strife/d_main.c
+++ b/src/strife/d_main.c
@@ -1145,7 +1145,7 @@ static void D_SetChar(char c)
 //
 // D_DrawText
 //
-static void D_DrawText(char *string, int bc, int fc)
+static void D_DrawText(const char *string, int bc, int fc)
 {
     int column;
     int row;