mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2026-01-11 17:09:45 +01:00
Added 32:9 aspect ratio
This commit is contained in:
parent
4a66295a6d
commit
cb9654651a
5 changed files with 7 additions and 1 deletions
|
|
@ -70,6 +70,8 @@ float EmulationAspectRatio(AspectRatio aspect, float window_aspect_ratio) {
|
|||
return 9.0f / 21.0f;
|
||||
case AspectRatio::R16_10:
|
||||
return 10.0f / 16.0f;
|
||||
case AspectRatio::R32_9:
|
||||
return 9.0f / 32.0f;
|
||||
case AspectRatio::StretchToWindow:
|
||||
return window_aspect_ratio;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue