mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2025-01-09 11:17:34 -03:00
[SSB4] Adjust game height variable in code as well
Helps with the HUD but the gameplay area still gets cut off
This commit is contained in:
parent
5df327fbe3
commit
6b4d39f6d5
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
[cross_f304]
|
||||
moduleMatches = 0x63FAA900
|
||||
|
||||
0x03301E2C = li r3, ($width / $height) * $gameHeight
|
||||
0x03301E2C = li r3, (($aspectRatioWidth <= 16) * 1920) + (($aspectRatioWidth > 16) * (($width / $height) * $gameHeight))
|
||||
0x03301E34 = li r3, (($aspectRatioHeight >= 9) * 1080) + (($aspectRatioHeight < 9) * (($height / $width) * $gameWidth))
|
||||
|
|
Loading…
Reference in a new issue