mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-03 09:50:35 -05:00
AudioCommon: Log to AUDIO, not DSPHLE
This code is not related to DSPHLE.
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user