AudioCommon: Log to AUDIO, not DSPHLE

This code is not related to DSPHLE.
This commit is contained in:
Lioncash
2015-08-09 21:36:00 -04:00
parent 59e48e0fcf
commit 3f78d74fc1
3 changed files with 15 additions and 15 deletions

View File

@ -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()