From a8fd98e6dc8400fadc07ba707aa13541c01d7c20 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 21 Oct 2014 01:09:24 +0200 Subject: [PATCH] Rename 'abs' local variable to 'absolute' --- gfx/shader/shader_parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/shader/shader_parse.c b/gfx/shader/shader_parse.c index b2e75c0e17..9ab0f08482 100644 --- a/gfx/shader/shader_parse.c +++ b/gfx/shader/shader_parse.c @@ -522,7 +522,7 @@ static const char *scale_type_to_str(enum gfx_scale_type type) } static void shader_write_scale_dim(config_file_t *conf, const char *dim, - enum gfx_scale_type type, float scale, unsigned abs, unsigned i) + enum gfx_scale_type type, float scale, unsigned absolute, unsigned i) { char key[64]; print_buf(key, "scale_type_%s%u", dim, i); @@ -530,7 +530,7 @@ static void shader_write_scale_dim(config_file_t *conf, const char *dim, print_buf(key, "scale_%s%u", dim, i); if (type == RARCH_SCALE_ABSOLUTE) - config_set_int(conf, key, abs); + config_set_int(conf, key, absolute); else config_set_float(conf, key, scale); }