commit 52313be61440a43fb65ef1a79030a420eb664bea
Author: Turo Lamminen <turotl@gmail.com>
AuthorDate: Sat Mar 31 15:29:03 2018 +0300
Commit: Turo Lamminen <turotl@gmail.com>
CommitDate: Sat Mar 31 15:51:36 2018 +0300
Fix const correctness issue in V_ScreenShot
---
src/v_video.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/v_video.c b/src/v_video.c
index 7c25c889..293c4467 100644
--- a/src/v_video.c
+++ b/src/v_video.c
@@ -835,7 +835,7 @@ void V_ScreenShot(char *format)
{
int i;
char lbmname[16]; // haleyjd 20110213: BUG FIX - 12 is too small!
- char *ext;
+ const char *ext;
// find a file name to save it to