summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/AudioCommon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/AudioCommon/AudioCommon.cpp')
-rw-r--r--Source/Core/AudioCommon/AudioCommon.cpp6
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()