Skip to content

Commit

Permalink
SPU2: switch to ConWarn for linux fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
GovanifY authored and lightningterror committed Nov 8, 2020
1 parent f9b4271 commit ee25b2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pcsx2/SPU2/Linux/Config.cpp
Expand Up @@ -169,8 +169,8 @@ void ReadSettings()

if (mods[OutputModule] == nullptr)
{
fwprintf(stderr, L"* SPU2: Unknown output module '%s' specified in configuration file.\n", temp.wc_str());
fprintf(stderr, "* SPU2: Defaulting to SDL (%S).\n", SDLOut->GetIdent());
Console.Warning("* SPU2: Unknown output module '%s' specified in configuration file.", temp.wc_str());
Console.Warning("* SPU2: Defaulting to SDL (%s).", SDLOut->GetIdent());
OutputModule = FindOutputModuleById(SDLOut->GetIdent());
}

Expand Down
2 changes: 1 addition & 1 deletion pcsx2/SPU2/Windows/Config.cpp
Expand Up @@ -155,7 +155,7 @@ void ReadSettings()
{
// Unsupported or legacy module.
Console.Warning("* SPU2: Unknown output module '%s' specified in configuration file.", omodid);
Console.Warning("* SPU2: Defaulting to XAudio (%S).", XAudio2Out->GetIdent());
Console.Warning("* SPU2: Defaulting to XAudio (%s).", XAudio2Out->GetIdent());
OutputModule = FindOutputModuleById(XAudio2Out->GetIdent());
}
}
Expand Down

0 comments on commit ee25b2e

Please sign in to comment.