From d55c52099684f4a993665fe3e50a9d1564cce40e Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Fri, 19 Aug 2016 21:27:22 +0200 Subject: [PATCH] Fix a format string mismatch --- Source/i_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/i_video.c b/Source/i_video.c index 95072153..a3819b38 100644 --- a/Source/i_video.c +++ b/Source/i_video.c @@ -780,7 +780,7 @@ static void I_InitGraphicsMode(void) { printf("Failed to set video mode %dx%dx8 %s\n" "Attempting to set 320x200x8 windowed mode\n", - fullscreen ? "fullscreen" : "windowed", v_w, v_h); + v_w, v_h, fullscreen ? "fullscreen" : "windowed"); v_w = 320; v_h = 200;