Skip to content

Commit

Permalink
Backport CLang warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wohlstand committed Mar 3, 2019
1 parent 8cd4845 commit 826101e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chips/pmdwin/opna.c
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ static void Mix6I(OPNA *opna, int32_t *buffer, uint32_t nsamples, int activech)

if (opna->mpratio < 16384) {
for (i = 0; i < nsamples; i++) {
int32_t l, r, d;
int32_t l = 0, r = 0, d = 0;
while (delta > 0) {
ibuf[0] = 0;
ibuf[1] = 0;
Expand Down

0 comments on commit 826101e

Please sign in to comment.