mirror of https://github.com/PCSX2/pcsx2.git
SPU2: switch to ConWarn for linux fallback
This commit is contained in:
parent
f9b42716d2
commit
ee25b2e5b2
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue