mirror of
https://github.com/qemu/qemu.git
synced 2024-11-28 22:33:36 +08:00
Remove real_screen->pixels checks
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6372 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
2e77eac62d
commit
413bfb7cfc
10
sdl.c
10
sdl.c
@ -93,21 +93,11 @@ static void sdl_resize(DisplayState *ds)
|
||||
if (gui_noframe)
|
||||
flags |= SDL_NOFRAME;
|
||||
|
||||
again:
|
||||
real_screen = SDL_SetVideoMode(ds_get_width(ds), ds_get_height(ds), 0, flags);
|
||||
if (!real_screen) {
|
||||
fprintf(stderr, "Could not open SDL display\n");
|
||||
exit(1);
|
||||
}
|
||||
if (!real_screen->pixels && (flags & SDL_HWSURFACE) && (flags & SDL_FULLSCREEN)) {
|
||||
flags &= ~SDL_HWSURFACE;
|
||||
goto again;
|
||||
}
|
||||
|
||||
if (!real_screen->pixels) {
|
||||
fprintf(stderr, "Could not open SDL display\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
sdl_setdata(ds);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user