diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-08-09 21:36:00 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-08-09 21:36:03 -0400 |
| commit | 3f78d74fc111c7633d06b302aa154e3433b926d8 (patch) | |
| tree | ee009a4878f503b73560adc25203aebc4da41c34 /Source/Core/AudioCommon/AudioCommon.cpp | |
| parent | 59e48e0fcfb87b58f69f5020190d0a3f4221a1b6 (diff) | |
AudioCommon: Log to AUDIO, not DSPHLE
This code is not related to DSPHLE.
Diffstat (limited to 'Source/Core/AudioCommon/AudioCommon.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/AudioCommon.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/AudioCommon/AudioCommon.cpp b/Source/Core/AudioCommon/AudioCommon.cpp index f5438faca9..5e7005cad1 100644 --- a/Source/Core/AudioCommon/AudioCommon.cpp +++ b/Source/Core/AudioCommon/AudioCommon.cpp @@ -57,7 +57,7 @@ namespace AudioCommon if (!g_sound_stream && NullSound::isValid()) { - WARN_LOG(DSPHLE, "Could not initialize backend %s, using %s instead.", + WARN_LOG(AUDIO, "Could not initialize backend %s, using %s instead.", backend.c_str(), BACKEND_NULLSOUND); g_sound_stream = new NullSound(); } @@ -84,7 +84,7 @@ namespace AudioCommon void ShutdownSoundStream() { - INFO_LOG(DSPHLE, "Shutting down sound stream"); + INFO_LOG(AUDIO, "Shutting down sound stream"); if (g_sound_stream) { @@ -95,7 +95,7 @@ namespace AudioCommon g_sound_stream = nullptr; } - INFO_LOG(DSPHLE, "Done shutting down sound stream"); + INFO_LOG(AUDIO, "Done shutting down sound stream"); } std::vector<std::string> GetSoundBackends() |
