mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 17:35:46 +00:00
audio_core: Add EnableStretching to interface so that one can toggle stretching on and off
This commit is contained in:
parent
559ca8ae8a
commit
96febf8f85
4 changed files with 52 additions and 9 deletions
|
@ -71,6 +71,10 @@ void SelectSink(std::string sink_id) {
|
|||
DSP::HLE::SetSink(iter->factory());
|
||||
}
|
||||
|
||||
void EnableStretching(bool enable) {
|
||||
DSP::HLE::EnableStretching(enable);
|
||||
}
|
||||
|
||||
void Shutdown() {
|
||||
CoreTiming::UnscheduleEvent(tick_event, 0);
|
||||
DSP::HLE::Shutdown();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue