Prevent PixelFormatFromRenderTargetFormat from returning an uninitialized value

This commit is contained in:
Khangaroo
2018-08-10 17:03:52 -04:00
committed by GitHub
parent 0a003efde4
commit e555fc3552

View File

@@ -250,6 +250,7 @@ struct SurfaceParams {
default:
LOG_CRITICAL(HW_GPU, "Unimplemented format={}", static_cast<u32>(format));
UNREACHABLE();
return PixelFormat::ABGR8U;
}
}