mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
AudioCommon: Log to AUDIO, not DSPHLE
This code is not related to DSPHLE.
This commit is contained in:
parent
59e48e0fcf
commit
3f78d74fc1
3 changed files with 15 additions and 15 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue