From e0f9feb903604a01fc23b712aca3c11cc86c5060 Mon Sep 17 00:00:00 2001 From: Themaister Date: Sat, 16 Mar 2013 14:14:28 +0100 Subject: [PATCH] Fix 16:15 aspect lut. --- gfx/gfx_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/gfx_common.c b/gfx/gfx_common.c index 67f14f0d1f..f3e50c8976 100644 --- a/gfx/gfx_common.c +++ b/gfx/gfx_common.c @@ -184,7 +184,7 @@ struct aspect_ratio_elem aspectratio_lut[ASPECT_RATIO_END] = { { "8:7", 1.1428f }, { "16:9", 1.7778f }, { "16:10", 1.6f }, - { "16:15", 3.2f }, + { "16:15", 16.0f / 15.0f }, { "19:12", 1.5833f }, { "19:14", 1.3571f }, { "30:17", 1.7647f },