diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-07-23 17:54:50 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-07-23 17:54:50 +0000 |
commit | 1ff5c1a68e2784722b66ecc40e30908e87e28a3b (patch) | |
tree | 75e73612ba30adb844882677505bef4bcb68bf5b /sdl.c | |
parent | e5d80f94c574592a293dfbd6ab5cda674373b514 (diff) |
prevent window resizing
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1519 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'sdl.c')
-rw-r--r-- | sdl.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -53,7 +53,6 @@ static void sdl_resize(DisplayState *ds, int w, int h) // printf("resizing to %d %d\n", w, h); flags = SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_HWACCEL; - flags |= SDL_RESIZABLE; if (gui_fullscreen) flags |= SDL_FULLSCREEN; screen = SDL_SetVideoMode(w, h, 0, flags); |