Fix return in wrong place
This commit is contained in:
parent
3dec3e1264
commit
21f7c0d966
|
@ -140,8 +140,8 @@ audio_poke(Uxn *u, Uint16 ptr, Uint8 b0, Uint8 b1)
|
||||||
q->dat[q->n++] = (m[0xd] << 8) + b1;
|
q->dat[q->n++] = (m[0xd] << 8) + b1;
|
||||||
} else if(b0 == 0xf && q != NULL) {
|
} else if(b0 == 0xf && q != NULL) {
|
||||||
q->ends = 1;
|
q->ends = 1;
|
||||||
return b1;
|
|
||||||
}
|
}
|
||||||
|
return b1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in New Issue