Null check
This commit is contained in:
@ -22,7 +22,7 @@ namespace pxsim.SoundMethods {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function play(buf: RefBuffer, volume: number) {
|
export function play(buf: RefBuffer, volume: number) {
|
||||||
if (numSoundsPlaying >= soundsLimit) {
|
if (!buf || numSoundsPlaying >= soundsLimit) {
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
}
|
}
|
||||||
return new Promise<void>(resolve => {
|
return new Promise<void>(resolve => {
|
||||||
|
Reference in New Issue
Block a user