pcsx2: reduce std padding to 1 for small screen

This commit is contained in:
Gregory Hainaut 2016-11-19 21:52:08 +01:00
parent 58c3794ce7
commit 30a5922a0b
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ void pxSizerFlags::SetBestPadding()
if (wxSystemSettings::GetMetric(wxSYS_SCREEN_X) > 1024 && wxSystemSettings::GetMetric(wxSYS_SCREEN_Y) > 864)
StdPadding = 4;
else
StdPadding = 2;
StdPadding = 1;
}
// --------------------------------------------------------------------------------------