mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 13:27:41 -07:00
Accomodate top/bottom only lzyout when setting screen size
This commit is contained in:
parent
529a690089
commit
ed2121d7ec
@ -775,6 +775,11 @@ QSize ScreenHandler::screenGetMinSize(int factor = 1)
|
||||
int w = 256 * factor;
|
||||
int h = 192 * factor;
|
||||
|
||||
if (Config::ScreenSizing == 4 || Config::ScreenSizing == 5)
|
||||
{
|
||||
return QSize(w, h);
|
||||
}
|
||||
|
||||
if (Config::ScreenLayout == 0) // natural
|
||||
{
|
||||
if (isHori)
|
||||
|
Loading…
Reference in New Issue
Block a user