diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2014-02-23 15:14:27 +0100 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2014-02-28 12:28:19 +0100 |
| commit | 6914eca167d35b4ffb3e1979bb690b378bb8448a (patch) | |
| tree | 6b635bbccc4a04ed7e1c1db37a52ab27bc8aa692 /Source/Core/AudioCommon/AudioCommon.cpp | |
| parent | a3508823def6b3a013436e91653ed758aadf27eb (diff) | |
Fix various warnings reported by clang
- mostly remove unused variables
- rename some generic JIT identifiers
Diffstat (limited to 'Source/Core/AudioCommon/AudioCommon.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/AudioCommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/AudioCommon.cpp b/Source/Core/AudioCommon/AudioCommon.cpp index a8229b3f84..b964b6b84a 100644 --- a/Source/Core/AudioCommon/AudioCommon.cpp +++ b/Source/Core/AudioCommon/AudioCommon.cpp @@ -134,7 +134,7 @@ namespace AudioCommon { return true; } - return SConfig::GetInstance().m_EnableJIT; + return SConfig::GetInstance().m_DSPEnableJIT; } void PauseAndLock(bool doLock, bool unpauseOnUnlock) |
