D3D9/11: Degrade a PanicAlert related to EFB format changes to an ERROR_LOG
This commit is contained in:
parent
8fb1a02f6b
commit
b33be736cd
|
@ -748,7 +748,7 @@ void Renderer::ReinterpretPixelData(unsigned int convtype)
|
|||
else if (convtype == 2) pixel_shader = PixelShaderCache::ReinterpRGBA6ToRGB8(true);
|
||||
else
|
||||
{
|
||||
PanicAlert("Trying to reinterpret pixel data with unsupported conversion type %d", convtype);
|
||||
ERROR_LOG(VIDEO, "Trying to reinterpret pixel data with unsupported conversion type %d", convtype);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -761,7 +761,7 @@ void Renderer::ReinterpretPixelData(unsigned int convtype)
|
|||
else if (convtype == 2) pixel_shader = PixelShaderCache::ReinterpRGBA6ToRGB8();
|
||||
else
|
||||
{
|
||||
PanicAlert("Trying to reinterpret pixel data with unsupported conversion type %d", convtype);
|
||||
ERROR_LOG(VIDEO, "Trying to reinterpret pixel data with unsupported conversion type %d", convtype);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue