0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-24 06:45:11 +00:00

Fix return in wrong place

This commit is contained in:
Andrew Alderwick 2021-04-07 22:46:52 +01:00
parent 3dec3e1264
commit 21f7c0d966

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