From 200e9a44b7573a556ff4061353b2777da6bac7a2 Mon Sep 17 00:00:00 2001 From: zeefaad Date: Sun, 28 Dec 2025 11:43:25 +0100 Subject: [PATCH] =?UTF-8?q?variation=20de=20valeur=20pr=C3=A9cise=20(lent)?= =?UTF-8?q?=20/=20accel)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/main.c b/main.c index 3165f7a..6012017 100644 --- a/main.c +++ b/main.c @@ -238,11 +238,8 @@ void DrawControlPanel(Michelson *mic) { float stepLambda = speedMode ? 10.0f : 1.0f; if (GuiButtonRepeat((Rectangle){startX, startY + 30, btnSize, 25}, "-", shouldRepeat)) mic->lambda -= stepLambda; - GuiSlider((Rectangle){startX + btnSize + 5, startY + 30, sliderWidth - 40, 25}, NULL, NULL, &mic->lambda, 380, 780); - if (GuiButtonRepeat((Rectangle){startX + btnSize + sliderWidth - 30, startY + 30, btnSize, 25}, "+", shouldRepeat)) mic->lambda += stepLambda; - DrawRectangle(startX + contentWidth - 30, startY + 30, 30, 25, WavelengthToColor(mic->lambda));