Wei Mingzhi 12 years ago
parent
commit
5b08f14671
1 changed files with 2 additions and 1 deletions
  1. 2 1
      video.c

+ 2 - 1
video.c

@@ -87,7 +87,8 @@ VIDEO_Init(
    // Before we can render anything, we need a window and a renderer.
    //
    gpWindow = SDL_CreateWindow("SDL_RenderCopy Example",
-      SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 640, 480, SDL_WINDOW_SHOWN);
+      SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 640, 400,
+      SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE);
 
    if (gpWindow == NULL)
    {