From 56d916bf93837d6fa7b1df461100fac370fc7f3e Mon Sep 17 00:00:00 2001 From: Ignacio Farias Date: Mon, 16 Aug 2010 15:45:18 +0000 Subject: [PATCH] Corrected writing error on previous commit :). Now should compile correctly. Thanks God for the advise " /trunk/Source/Core/AudioCommon/Src/Mixer.cpp r6100 line 145: 145: { oops, wrong brace? " git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6101 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/AudioCommon/Src/Mixer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/AudioCommon/Src/Mixer.cpp b/Source/Core/AudioCommon/Src/Mixer.cpp index d7a8092ff5..ff048dbdab 100644 --- a/Source/Core/AudioCommon/Src/Mixer.cpp +++ b/Source/Core/AudioCommon/Src/Mixer.cpp @@ -142,7 +142,7 @@ void CMixer::PushSamples(short *samples, unsigned int num_samples) if (!m_throttle) { return; - { + } else { // The auto throttle function. This loop will put a ceiling on the CPU MHz.