mirror of https://github.com/bsnes-emu/bsnes.git
SDL2: Fix fullscreen viewport bug
This commit is contained in:
parent
70542137f2
commit
719a92d8a4
|
@ -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