Just expose all aspect ratios - some users want these weird ratios

This commit is contained in:
twinaphex 2014-07-18 04:10:22 +02:00
parent a4983cc935
commit dd55520b59
2 changed files with 0 additions and 4 deletions

View File

@ -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 },

View File

@ -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,