From 8032bd03361a38c8780fe593181b96cc36258e2d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 30 Oct 2016 02:10:20 +0100 Subject: [PATCH] Fix float right action --- setting_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setting_list.c b/setting_list.c index 7b8d0b563d..94b7b50776 100644 --- a/setting_list.c +++ b/setting_list.c @@ -427,7 +427,7 @@ static int setting_fraction_action_right_default( return -1; min = setting->min; - max = setting->min; + max = setting->max; (void)wraparound; /* TODO/FIXME - handle this */