mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-31 10:02:56 +01:00
17 lines
321 B
C++
17 lines
321 B
C++
// Copyright 2008 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "Core/DSPEmulator.h"
|
|
|
|
#include "Core/HW/DSPHLE/DSPHLE.h"
|
|
#include "Core/HW/DSPLLE/DSPLLE.h"
|
|
|
|
DSPEmulator *CreateDSPEmulator(bool HLE)
|
|
{
|
|
if (HLE)
|
|
return new DSPHLE();
|
|
else
|
|
return new DSPLLE();
|
|
}
|