mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 14:46:49 +01:00
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 if (convtype == 2) pixel_shader = PixelShaderCache::ReinterpRGBA6ToRGB8(true);
|
||||||
else
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -761,7 +761,7 @@ void Renderer::ReinterpretPixelData(unsigned int convtype)
|
|||||||
else if (convtype == 2) pixel_shader = PixelShaderCache::ReinterpRGBA6ToRGB8();
|
else if (convtype == 2) pixel_shader = PixelShaderCache::ReinterpRGBA6ToRGB8();
|
||||||
else
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user