1
0
forked from MeloNX/MeloNX

Fix out of range exception when a invalid base lod is used (#1931)

This commit is contained in:
gdkchan 2021-01-19 00:04:38 -03:00 committed by GitHub
parent b30a555d3e
commit 8e198da09e

View File

@ -223,7 +223,7 @@ namespace Ryujinx.Graphics.Gpu.Image
layerSize = sizeInfo.LayerSize; layerSize = sizeInfo.LayerSize;
if (minLod != 0) if (minLod != 0 && minLod < levels)
{ {
// If the base level is not zero, we additionally add the mip level offset // If the base level is not zero, we additionally add the mip level offset
// to the address, this allows the texture manager to find the base level from the // to the address, this allows the texture manager to find the base level from the