core: sound: Use correct variable when logging new sample rates
Former-commit-id: 6f5ff96dae03b2be061bcf06a6d701fda7ca15cb Former-commit-id: 2934a02dfd36de2e794e8861df8f5035daab3165
This commit is contained in:
parent
aaf1a71a9d
commit
ebd58261ba
|
@ -293,7 +293,7 @@ impl SoundController {
|
||||||
self.cycles_per_sample = 512 >> resolution;
|
self.cycles_per_sample = 512 >> resolution;
|
||||||
info!(
|
info!(
|
||||||
"bias - setting sample frequency to {}hz",
|
"bias - setting sample frequency to {}hz",
|
||||||
self.cycles_per_sample
|
self.sample_rate
|
||||||
);
|
);
|
||||||
// TODO this will not affect the currently scheduled sample event
|
// TODO this will not affect the currently scheduled sample event
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue