Skip to content

Commit 078a4df

Browse files
committed
Fix ios example
1 parent 46e156d commit 078a4df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/ios/src/feedback.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ pub fn run_example() -> Result<(), coreaudio::Error> {
3636
SampleFormat::F32 => LinearPcmFlags::IS_FLOAT,
3737
SampleFormat::I32 | SampleFormat::I16 | SampleFormat::I8 => {
3838
LinearPcmFlags::IS_SIGNED_INTEGER
39-
}
39+
},
40+
SampleFormat::I24 => { unimplemented!("Not implemented for I24")},
4041
};
4142

4243
// Using IS_NON_INTERLEAVED everywhere because data::Interleaved is commented out / not implemented

0 commit comments

Comments
 (0)