Skip to content

Commit

Permalink
made windowed-mode windows be resize-able/scale-able - guest OS displ…
Browse files Browse the repository at this point in the history
…ay size is retained, though
  • Loading branch information
DavidLudwig committed Aug 16, 2017
1 parent 109bc39 commit e49cd85
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions BasiliskII/src/SDL/video_sdl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,8 @@ static SDL_Surface * init_sdl_video(int width, int height, int bpp, Uint32 flags
window_flags |= SDL_WINDOW_FULLSCREEN_DESKTOP;
window_width = desktop_mode.w;
window_height = desktop_mode.h;
} else {
window_flags |= SDL_WINDOW_RESIZABLE;
}

if (sdl_window) {
Expand Down

0 comments on commit e49cd85

Please sign in to comment.