From e34f58790510346cdba640fa1f9b6c178f3055d2 Mon Sep 17 00:00:00 2001 From: OBattler Date: Mon, 11 Jul 2016 06:59:03 +0200 Subject: [PATCH] Fixed another recently introduced bug in video.c that prevented it from compiling. --- src/video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video.c b/src/video.c index 1a6ac551b..bd315323c 100644 --- a/src/video.c +++ b/src/video.c @@ -484,7 +484,7 @@ void take_screenshot() } else if (vid_api == 0) { - strftime(fn, 1024, "screenshots\\%Y%m%d_%H%M%S.bmp", info); + strftime(screenshot_fn, 1024, "screenshots\\%Y%m%d_%H%M%S.bmp", info); if (video_fullscreen) { ddraw_fs_take_screenshot(screenshot_fn);