make fullscreen fill the screen and disable "exclusive-fullscreen" as its not needed

This commit is contained in:
Stossy11 2025-01-10 13:22:36 +11:00
parent d13dc50a10
commit 71551adf2d
2 changed files with 8 additions and 3 deletions

View File

@ -152,9 +152,14 @@ class Ryujinx {
args.append(contentsOf: ["--memory-manager-mode", config.memoryManagerMode]) args.append(contentsOf: ["--memory-manager-mode", config.memoryManagerMode])
args.append(contentsOf: ["--exclusive-fullscreen", String(config.fullscreen)]) // args.append(contentsOf: ["--exclusive-fullscreen", String(config.fullscreen)])
args.append(contentsOf: ["--exclusive-fullscreen-width", "\(Int(UIScreen.main.bounds.width))"]) // args.append(contentsOf: ["--exclusive-fullscreen-width", "\(Int(UIScreen.main.bounds.width))"])
args.append(contentsOf: ["--exclusive-fullscreen-height", "\(Int(UIScreen.main.bounds.height))"]) // args.append(contentsOf: ["--exclusive-fullscreen-height", "\(Int(UIScreen.main.bounds.height))"])
// We don't need this. Ryujinx should handle it fine :3
if config.fullscreen {
args.append(contentsOf: ["--aspect-ratio", "Stretched"])
}
if config.nintendoinput { if config.nintendoinput {