mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-21 05:09:46 -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 w = 256 * factor;
|
||||||
int h = 192 * factor;
|
int h = 192 * factor;
|
||||||
|
|
||||||
|
if (Config::ScreenSizing == 4 || Config::ScreenSizing == 5)
|
||||||
|
{
|
||||||
|
return QSize(w, h);
|
||||||
|
}
|
||||||
|
|
||||||
if (Config::ScreenLayout == 0) // natural
|
if (Config::ScreenLayout == 0) // natural
|
||||||
{
|
{
|
||||||
if (isHori)
|
if (isHori)
|
||||||
|
Reference in New Issue
Block a user