diff --git a/plugins/GSdx/GSRendererHW.cpp b/plugins/GSdx/GSRendererHW.cpp index abe6708bb1..77cffcbb6a 100644 --- a/plugins/GSdx/GSRendererHW.cpp +++ b/plugins/GSdx/GSRendererHW.cpp @@ -114,7 +114,8 @@ void GSRendererHW::SetScaling() ratio = round(ratio + buffer_scale_offset); m_tc->RemovePartial(); - m_height = crtc_size.y * ratio; + m_width = max(m_width, 1280); + m_height = max(static_cast(crtc_size.y * ratio) , 1024); } }