mirror of https://github.com/adamdruppe/arsd.git
new dmd compat
This commit is contained in:
parent
cdeca0a686
commit
3cc5028486
|
@ -1777,7 +1777,10 @@ final class AudioPcmOutThreadImplementation : Thread {
|
||||||
public void unsuspend() {
|
public void unsuspend() {
|
||||||
suspended_ = false;
|
suspended_ = false;
|
||||||
suspendWanted = false;
|
suspendWanted = false;
|
||||||
event.set();
|
static if(__traits(hasMember, event, "setIfInitialized"))
|
||||||
|
event.setIfInitialized();
|
||||||
|
else
|
||||||
|
event.set();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
|
|
Loading…
Reference in New Issue