Fix return in wrong place

This commit is contained in:
Andrew Alderwick 2021-04-07 22:46:52 +01:00
parent 3dec3e1264
commit 21f7c0d966
1 changed files with 1 additions and 1 deletions

View File

@ -140,8 +140,8 @@ audio_poke(Uxn *u, Uint16 ptr, Uint8 b0, Uint8 b1)
q->dat[q->n++] = (m[0xd] << 8) + b1;
} else if(b0 == 0xf && q != NULL) {
q->ends = 1;
return b1;
}
return b1;
}
int