mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-01-22 15:43:18 -05:00
Fixed forced 4:3 (#384)
Just reverting a 'fix' to my code someone else made.
This commit is contained in:
parent
1ee3fd1d13
commit
9901c89a33
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ u32 djui_hud_get_screen_width(void) {
|
|||
}
|
||||
|
||||
return (sResolution == RESOLUTION_N64)
|
||||
? (use_forced_4by3() ? (4.0f / 3.0f) : (GFX_DIMENSIONS_ASPECT_RATIO * SCREEN_HEIGHT))
|
||||
? ((use_forced_4by3() ? (4.0f / 3.0f) : GFX_DIMENSIONS_ASPECT_RATIO) * SCREEN_HEIGHT)
|
||||
: (windowWidth / djui_gfx_get_scale());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue