mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
17 lines
320 B
C++
17 lines
320 B
C++
// Copyright 2013 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();
|
|
}
|