From b85bcb8e486d5cf5365abfd3862d26405478b4c3 Mon Sep 17 00:00:00 2001 From: pstef <3462925+pstef@users.noreply.github.com> Date: Thu, 20 Mar 2025 16:21:27 +0000 Subject: [PATCH] Adjust types of index and maxindex to unsigned --- libretro-common/audio/dsp_filters/tremolo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libretro-common/audio/dsp_filters/tremolo.c b/libretro-common/audio/dsp_filters/tremolo.c index 5bdf52ed32..c7a5d6a143 100644 --- a/libretro-common/audio/dsp_filters/tremolo.c +++ b/libretro-common/audio/dsp_filters/tremolo.c @@ -35,8 +35,8 @@ struct tremolo_core float *wavetable; float freq; float depth; - int index; - int maxindex; + unsigned index; + unsigned maxindex; }; struct tremolo