Skip to content
Permalink
Browse files
Merge pull request #7009 from lioncash/dsp
DSPEmulator: Default destructor in the cpp file
  • Loading branch information
leoetlino committed May 29, 2018
2 parents 62adfaa + c33228e commit 86bbf54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
@@ -9,6 +9,8 @@
#include "Core/HW/DSPHLE/DSPHLE.h"
#include "Core/HW/DSPLLE/DSPLLE.h"

DSPEmulator::~DSPEmulator() = default;

std::unique_ptr<DSPEmulator> CreateDSPEmulator(bool hle)
{
if (hle)
@@ -12,7 +12,7 @@ class PointerWrap;
class DSPEmulator
{
public:
virtual ~DSPEmulator() {}
virtual ~DSPEmulator();
virtual bool IsLLE() = 0;

virtual bool Initialize(bool wii, bool dsp_thread) = 0;

0 comments on commit 86bbf54

Please sign in to comment.