From dd55520b5984cb8faa8c0f54780b582bba0681e3 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 18 Jul 2014 04:10:22 +0200 Subject: [PATCH] Just expose all aspect ratios - some users want these weird ratios --- gfx/gfx_common.c | 2 -- gfx/gfx_common.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/gfx/gfx_common.c b/gfx/gfx_common.c index a1f4cc8997..a903a6b58f 100644 --- a/gfx/gfx_common.c +++ b/gfx/gfx_common.c @@ -186,7 +186,6 @@ struct aspect_ratio_elem aspectratio_lut[ASPECT_RATIO_END] = { { "16:9", 1.7778f }, { "16:10", 1.6f }, { "16:15", 16.0f / 15.0f }, -#ifdef RARCH_CONSOLE { "1:1", 1.0f }, { "2:1", 2.0f }, { "3:2", 1.5f }, @@ -202,7 +201,6 @@ struct aspect_ratio_elem aspectratio_lut[ASPECT_RATIO_END] = { { "19:14", 1.3571f }, { "30:17", 1.7647f }, { "32:9", 3.5555f }, -#endif { "Config", 0.0f }, { "Square pixel", 1.0f }, { "Core provided", 1.0f }, diff --git a/gfx/gfx_common.h b/gfx/gfx_common.h index 768d104af9..7e54e0926c 100644 --- a/gfx/gfx_common.h +++ b/gfx/gfx_common.h @@ -47,7 +47,6 @@ enum aspect_ratio ASPECT_RATIO_16_9, ASPECT_RATIO_16_10, ASPECT_RATIO_16_15, -#ifdef RARCH_CONSOLE // None of these aspect ratios make any sense. ASPECT_RATIO_1_1, ASPECT_RATIO_2_1, ASPECT_RATIO_3_2, @@ -63,7 +62,6 @@ enum aspect_ratio ASPECT_RATIO_19_14, ASPECT_RATIO_30_17, ASPECT_RATIO_32_9, -#endif ASPECT_RATIO_CONFIG, ASPECT_RATIO_SQUARE, ASPECT_RATIO_CORE,