Merge pull request #1 from fabiangreffrath/crash-videomode

Fix a format string mismatch
This commit is contained in:
James Haley 2016-08-20 02:12:43 -05:00 committed by GitHub
commit 09ce9e26d3

View File

@ -780,7 +780,7 @@ static void I_InitGraphicsMode(void)
{ {
printf("Failed to set video mode %dx%dx8 %s\n" printf("Failed to set video mode %dx%dx8 %s\n"
"Attempting to set 320x200x8 windowed mode\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_w = 320;
v_h = 200; v_h = 200;