service/dsp: Clean up global state

This commit is contained in:
NarcolepticK 2018-07-24 15:54:33 -04:00
parent 14878a17d9
commit b840c63386
5 changed files with 39 additions and 24 deletions

View file

@ -10,6 +10,7 @@
#include "audio_core/audio_types.h"
#include "audio_core/dsp_interface.h"
#include "common/common_types.h"
#include "core/hle/service/dsp/dsp_dsp.h"
#include "core/memory.h"
namespace AudioCore {
@ -27,6 +28,8 @@ public:
std::array<u8, Memory::DSP_RAM_SIZE>& GetDspMemory() override;
void SetDspToInterrupt(std::shared_ptr<Service::DSP::DSP_DSP> dsp) override;
private:
struct Impl;
friend struct Impl;