From 95a1d29afec42bd5fcdbe58b413b8c4e4a7ad021 Mon Sep 17 00:00:00 2001 From: couriersud Date: Tue, 6 Jan 2015 16:04:22 +0100 Subject: Proposal to fix MT05682 (SDL resize issue). Please check and provide feedback whether MT05682 can be closed. (nw) --- src/osd/sdl/window.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/osd/sdl/window.c b/src/osd/sdl/window.c index 5a0233c13d4..7ac05b2441b 100644 --- a/src/osd/sdl/window.c +++ b/src/osd/sdl/window.c @@ -964,7 +964,8 @@ void sdl_window_info::video_window_update(running_machine &machine) if (!this->m_fullscreen) { blit_surface_size(width, height); - window_resize(blitwidth, blitheight); + //Don't resize window without user interaction; + //window_resize(blitwidth, blitheight); } else if (video_config.switchres) { -- cgit v1.2.3