Fixed forced 4:3 (#384)
Just reverting a 'fix' to my code someone else made.
This commit is contained in:
parent
8311eb23ec
commit
6367da1237
|
@ -177,7 +177,7 @@ u32 djui_hud_get_screen_width(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (sResolution == RESOLUTION_N64)
|
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());
|
: (windowWidth / djui_gfx_get_scale());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue