Gsdx: Height change on Gregory's recommendation :)

This commit is contained in:
refractionpcsx2 2015-06-07 16:11:57 +01:00
parent c3c29945b2
commit 0946958acf
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ void GSRendererHW::SetScaling() {
return;
}
m_height = m_buffer_size <= 640 ? 512 : (int)(m_buffer_size*0.8);
m_height = m_buffer_size < 1024 ? 512 : 1024;
if (!m_nativeres)
{
m_upscale_multiplier = theApp.GetConfig("upscale_multiplier", m_upscale_multiplier);