From b92deddd40a7bd03349690439e9784d5364b9b66 Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 21 Apr 2013 18:25:30 +0200 Subject: [PATCH] Shorten rotation names to avoid overflowing menu. --- gfx/gfx_common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gfx/gfx_common.c b/gfx/gfx_common.c index 4b0906494e..2d12869e93 100644 --- a/gfx/gfx_common.c +++ b/gfx/gfx_common.c @@ -208,9 +208,9 @@ struct aspect_ratio_elem aspectratio_lut[ASPECT_RATIO_END] = { char rotation_lut[4][32] = { "Normal", - "Vertical", - "Flipped", - "Flipped Rotated" + "90 deg", + "180 deg", + "270 deg" }; void gfx_set_square_pixel_viewport(unsigned width, unsigned height)