소스 검색

Fixed Jackaudio compiling (#222)

StopMotionCuber 7 년 전
부모
커밋
21f1ccfb5a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 {