Skip to content

Commit

Permalink
fix compile error on WASM targets
Browse files Browse the repository at this point in the history
  • Loading branch information
tesselode committed Mar 18, 2023
1 parent b2e8bca commit 3e9ace9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.7.3 - March 18, 2023

- Fix compile error on WASM targets

# v0.7.2 - March 18, 2023

- Fix crackling on Mac OS when multiple applications are playing audio
Expand Down
2 changes: 1 addition & 1 deletion crates/kira/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kira"
version = "0.7.2"
version = "0.7.3"
authors = ["Andrew Minnich <aminnich3@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 1 addition & 0 deletions crates/kira/src/manager/backend/cpal/wasm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ impl Backend for CpalBackend {
}
},
move |_| {},
None,
)?;
stream.play()?;
self.state = State::Initialized { _stream: stream };
Expand Down

0 comments on commit 3e9ace9

Please sign in to comment.