Skip to content
Snippets Groups Projects
Verified Commit e185ca7b authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

fix: clippy issues

parent fce45615
No related branches found
No related tags found
No related merge requests found
Pipeline #2325 passed
......@@ -130,9 +130,9 @@ impl Apu {
sequencer_step: 0,
output_timer: 0,
audio_buffer: VecDeque::with_capacity(
(sampling_rate as f32 * buffer_size as f32 * 2.0) as usize,
(sampling_rate as f32 * buffer_size * 2.0) as usize,
),
audio_buffer_max: (sampling_rate as f32 * buffer_size as f32 * 2.0) as usize,
audio_buffer_max: (sampling_rate as f32 * buffer_size * 2.0) as usize,
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment