File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1141,18 +1141,18 @@ impl AudioBackend for WebAudioBackend {
11411141
11421142#[ wasm_bindgen( raw_module = "./ruffle-imports.js" ) ]
11431143extern "C" {
1144- /// Imported JS method to copy data into an `AudioBuffer`.
1145- /// We'd prefer to use `AudioBuffer.copyToChannel`, but this isn't supported
1146- /// on Safari.
1144+ // Imported JS method to copy data into an `AudioBuffer`.
1145+ // We'd prefer to use `AudioBuffer.copyToChannel`, but this isn't supported
1146+ // on Safari.
11471147 #[ wasm_bindgen( js_name = "copyToAudioBuffer" ) ]
11481148 fn copy_to_audio_buffer (
11491149 audio_buffer : & web_sys:: AudioBuffer ,
11501150 left_data : Option < & [ f32 ] > ,
11511151 right_data : Option < & [ f32 ] > ,
11521152 ) ;
11531153
1154- /// Imported JS method to call `AudioContext.getOutputTimestamp` because
1155- /// it is not yet available in `web_sys`.
1154+ // Imported JS method to call `AudioContext.getOutputTimestamp` because
1155+ // it is not yet available in `web_sys`.
11561156 #[ wasm_bindgen( js_name = "getAudioOutputTimestamp" ) ]
11571157 fn get_audio_output_timestamp ( context : & web_sys:: AudioContext ) -> f64 ;
11581158}
You can’t perform that action at this time.
0 commit comments