Commit 1ff5c1a68e2784722b66ecc40e30908e87e28a3b

Authored by bellard
1 parent e5d80f94

prevent window resizing


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1519 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 0 additions and 1 deletions
... ... @@ -53,7 +53,6 @@ static void sdl_resize(DisplayState *ds, int w, int h)
53 53 // printf("resizing to %d %d\n", w, h);
54 54  
55 55 flags = SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_HWACCEL;
56   - flags |= SDL_RESIZABLE;
57 56 if (gui_fullscreen)
58 57 flags |= SDL_FULLSCREEN;
59 58 screen = SDL_SetVideoMode(w, h, 0, flags);
... ...