Przeglądaj źródła

Fixed Jackaudio compiling (#222)

StopMotionCuber 7 lat temu
rodzic
commit
21f1ccfb5a
1 zmienionych plików z 1 dodań i 1 usunięć
  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 {