twn_draw: multiply zoom by 0.1 to match projections

This commit is contained in:
veclavtalica 2025-03-07 11:16:31 +03:00
parent a03e1d885d
commit 733a1786ab

View File

@ -436,6 +436,9 @@ void draw_camera(Vec3 position, Vec3 direction, Vec3 up, float fov, float zoom,
if (!orthographic && fov >= (float)(M_PI))
log_warn("Invalid fov given (%f)", (double)fov);
/* inital zoom = 1.0 correlates to perspective from this */
zoom *= 0.1f;
float const aspect = (float)ctx.base_render_width / (float)ctx.base_render_height;
Camera const camera = {