mirror of https://github.com/bsnes-emu/bsnes.git
Merge pull request #217 from ZenithMDC/SDL2-viewport-bugfix
SDL2: Fix fullscreen viewport bug
This commit is contained in:
commit
0bfcdafe2d
|
@ -123,7 +123,7 @@ static void handle_events(GB_gameboy_t *gb)
|
|||
}
|
||||
|
||||
case SDL_WINDOWEVENT: {
|
||||
if (event.window.event == SDL_WINDOWEVENT_RESIZED) {
|
||||
if (event.window.event == SDL_WINDOWEVENT_SIZE_CHANGED) {
|
||||
update_viewport();
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue