From e3e818f83cfdf6363dbe1a0032fd70347d93f478 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 23 Apr 2013 07:21:48 -0400 Subject: [PATCH] Fix parameter naming in DSPEmulator.h. Should be "HLE" in CreateDSPEmulator's prototype, not "LLE". --- Source/Core/Core/Src/DSPEmulator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Src/DSPEmulator.h b/Source/Core/Core/Src/DSPEmulator.h index 4fa050c962..6df274d757 100644 --- a/Source/Core/Core/Src/DSPEmulator.h +++ b/Source/Core/Core/Src/DSPEmulator.h @@ -37,6 +37,6 @@ protected: SoundStream *soundStream; }; -DSPEmulator *CreateDSPEmulator(bool LLE); +DSPEmulator *CreateDSPEmulator(bool HLE); #endif // _DSPEMULATOR_H_