From ba43724fecef072d2cd2304463830401d82f3b4f Mon Sep 17 00:00:00 2001 From: radius Date: Wed, 24 Feb 2016 17:13:06 -0500 Subject: [PATCH] fix slider --- menu/drivers/wimp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu/drivers/wimp.c b/menu/drivers/wimp.c index 9e391116e6..0863ab0cd4 100644 --- a/menu/drivers/wimp.c +++ b/menu/drivers/wimp.c @@ -119,7 +119,7 @@ static void wimp_main(struct zr_context *ctx, int width, int height) zr_checkbox_bool(ctx, "Show FPS", &(settings->fps_show)); zr_checkbox_bool(ctx, "Show FPS", &(settings->fps_show)); zr_layout_row_dynamic(ctx, 30, 1); - zr_slider_float(ctx, 0, &settings->audio.volume, 100, 5); + zr_slider_float(ctx, -80, &settings->audio.volume, 12, 0.5); } zr_end(ctx);