Skip to content

Commit

Permalink
Fix small fucking mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
TheHellBox committed Apr 3, 2021
1 parent 78ee92c commit 2c15b04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kissmp-bridge/src/voice_chat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ pub fn run_vc_recording(
let sample_rate = config.sample_rate();
let sample_format = config.sample_format();
let mut config = config.config();
let send_m = std::sync::Arc::new(std::sync::Mutex::new(true));
let send_m = std::sync::Arc::new(std::sync::Mutex::new(false));
let send = send_m.clone();
config.buffer_size = buffer_size;
let stream = match sample_format {
Expand Down

0 comments on commit 2c15b04

Please sign in to comment.