mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2024-12-23 16:31:50 +01:00
[BotW] Add 3:2 aspect ratio and resolutions for it (#577)
This commit is contained in:
parent
4db55f51cc
commit
11d8f04a67
@ -90,6 +90,13 @@ $aspectRatioHeight = 4
|
|||||||
$showUltrawideOptions:int = 0
|
$showUltrawideOptions:int = 0
|
||||||
$ultrawideHUDMode:int = 0
|
$ultrawideHUDMode:int = 0
|
||||||
|
|
||||||
|
[Preset]
|
||||||
|
name = 3:2
|
||||||
|
category = Aspect Ratio
|
||||||
|
$aspectRatioWidth = 3
|
||||||
|
$aspectRatioHeight = 2
|
||||||
|
$showUltrawideOptions:int = 1
|
||||||
|
|
||||||
# 16:9 Resolutions
|
# 16:9 Resolutions
|
||||||
|
|
||||||
[Preset]
|
[Preset]
|
||||||
@ -441,6 +448,43 @@ condition = ((($aspectRatioWidth - 5) == 0) + (($aspectRatioHeight - 4) == 0)) =
|
|||||||
$width = 14400
|
$width = 14400
|
||||||
$height = 2700
|
$height = 2700
|
||||||
|
|
||||||
|
# 3:2 Resolutions
|
||||||
|
|
||||||
|
[Preset]
|
||||||
|
name = 1080x720
|
||||||
|
category = Resolution
|
||||||
|
condition = ((($aspectRatioWidth - 3) == 0) + (($aspectRatioHeight - 2) == 0)) == 2
|
||||||
|
$width = 1080
|
||||||
|
$height = 720
|
||||||
|
|
||||||
|
[Preset]
|
||||||
|
name = 1440x960
|
||||||
|
category = Resolution
|
||||||
|
condition = ((($aspectRatioWidth - 3) == 0) + (($aspectRatioHeight - 2) == 0)) == 2
|
||||||
|
$width = 1440
|
||||||
|
$height = 960
|
||||||
|
|
||||||
|
[Preset]
|
||||||
|
name = 1920x1280
|
||||||
|
category = Resolution
|
||||||
|
condition = ((($aspectRatioWidth - 3) == 0) + (($aspectRatioHeight - 2) == 0)) == 2
|
||||||
|
$width = 1920
|
||||||
|
$height = 1280
|
||||||
|
|
||||||
|
[Preset]
|
||||||
|
name = 2256x1504
|
||||||
|
category = Resolution
|
||||||
|
condition = ((($aspectRatioWidth - 3) == 0) + (($aspectRatioHeight - 2) == 0)) == 2
|
||||||
|
$width = 2256
|
||||||
|
$height = 1504
|
||||||
|
|
||||||
|
[Preset]
|
||||||
|
name = 3240x2160
|
||||||
|
category = Resolution
|
||||||
|
condition = ((($aspectRatioWidth - 3) == 0) + (($aspectRatioHeight - 2) == 0)) == 2
|
||||||
|
$width = 3240
|
||||||
|
$height = 2160
|
||||||
|
|
||||||
# Ultrawide Mode Options
|
# Ultrawide Mode Options
|
||||||
|
|
||||||
[Preset]
|
[Preset]
|
||||||
|
Loading…
Reference in New Issue
Block a user