UI: Option to resize window to 1440p, 2160p

Minor but useful quality of life addition
This commit is contained in:
asfasagag 2024-12-22 20:49:40 -08:00 committed by KeatonTheBot
parent 217f099d2c
commit 8726331a10
20 changed files with 48 additions and 0 deletions

View file

@ -249,6 +249,16 @@ namespace Ryujinx.Ava.UI.Views.Main
width = 1920;
break;
case "1440":
height = 1440;
width = 2560;
break;
case "2160":
height = 2160;
width = 3840;
break;
default:
throw new ArgumentNullException($"Invalid Tag for {item}");
}