core: sound: Use correct variable when logging new sample rates

Former-commit-id: 6f5ff96dae03b2be061bcf06a6d701fda7ca15cb
Former-commit-id: 2934a02dfd36de2e794e8861df8f5035daab3165
This commit is contained in:
Michel Heily 2020-11-05 02:37:28 +02:00
parent aaf1a71a9d
commit ebd58261ba

View file

@ -293,7 +293,7 @@ impl SoundController {
self.cycles_per_sample = 512 >> resolution;
info!(
"bias - setting sample frequency to {}hz",
self.cycles_per_sample
self.sample_rate
);
// TODO this will not affect the currently scheduled sample event
}