mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-10 21:00:06 +00:00
audio_core/hle,lle: implement UnloadComponent
This commit is contained in:
parent
9b41e6f85f
commit
6f6ffceec4
7 changed files with 65 additions and 1 deletions
|
@ -411,4 +411,8 @@ void DspHle::LoadComponent(const std::vector<u8>& component_data) {
|
|||
}
|
||||
}
|
||||
|
||||
void DspHle::UnloadComponent() {
|
||||
// Do nothing
|
||||
}
|
||||
|
||||
} // namespace AudioCore
|
||||
|
|
|
@ -36,6 +36,7 @@ public:
|
|||
void SetServiceToInterrupt(std::weak_ptr<Service::DSP::DSP_DSP> dsp) override;
|
||||
|
||||
void LoadComponent(const std::vector<u8>& buffer) override;
|
||||
void UnloadComponent() override;
|
||||
|
||||
private:
|
||||
struct Impl;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue