Skip to content

Commit b85bcb8

Browse files
committed
Adjust types of index and maxindex to unsigned
1 parent ce6cd00 commit b85bcb8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

libretro-common/audio/dsp_filters/tremolo.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ struct tremolo_core
3535
float *wavetable;
3636
float freq;
3737
float depth;
38-
int index;
39-
int maxindex;
38+
unsigned index;
39+
unsigned maxindex;
4040
};
4141

4242
struct tremolo

0 commit comments

Comments
 (0)