Browse Source

Fixed Jackaudio compiling (#222)

StopMotionCuber 7 years ago
parent
commit
21f1ccfb5a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      playback/src/audio_backend/jackaudio.rs

+ 1 - 1
playback/src/audio_backend/jackaudio.rs

@@ -16,7 +16,7 @@ pub struct JackData {
 }
 
 fn pcm_to_f32(sample: i16) -> f32 {
-    sample as f32 / 32768.0;
+    sample as f32 / 32768.0
 }
 
 impl ProcessHandler for JackData {