Fixed forced 4:3 (#384)

Just reverting a 'fix' to my code someone else made.
This commit is contained in:
Agent X 2023-05-06 03:13:54 -04:00 committed by GitHub
parent 1ee3fd1d13
commit 9901c89a33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}