Skip to content

Commit

Permalink
Update softmixer.rs
Browse files Browse the repository at this point in the history
Use AtomicU64 from atomic_shim, so that librespot works with MIPS and MIPSEL
  • Loading branch information
humaita-github authored Jan 28, 2025
1 parent c1ae860 commit ce66a7d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion playback/src/mixer/softmixer.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use std::sync::atomic::{AtomicU64, Ordering};
use atomic_shim::AtomicU64;
use std::sync::atomic::Ordering;
use std::sync::Arc;

use super::VolumeGetter;
Expand Down

0 comments on commit ce66a7d

Please sign in to comment.