mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 01:49:42 -06:00
Accomodate top/bottom only lzyout when setting screen size
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user