-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add early return for zero duration sounds #932
Conversation
Pull Request Test Coverage Report for Build 3476
💛 - Coveralls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What was the issue? I don't think this is a very guard clause, what if duration is negative?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@TheRealRavager I tested the changes and it does indeed fix the Error: play: audio system still playing previous sound
bug. However, I have two suggestions:
(1) For checking the duration of the wave
, use the strict comparison operator ===
instead of ==
.
(2) The following Source program still triggers the above bug
const sample = sine_sound(1000, -5); // supply invalid duration
play(sample);
I propose broadening the guard to return early on any non-positive value of the wave duration.
Have made the necessary changes. Thanks for the help |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK lgtm
* Add early return for zero duration sounds * Change guard clause to include all non-positive durations
Fix issue where playing a zero duration sound caused play() to never call stop().