diff options
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/TexturePool.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Image/TexturePool.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/TexturePool.cs b/Ryujinx.Graphics.Gpu/Image/TexturePool.cs index 53d810b9..9c7e849b 100644 --- a/Ryujinx.Graphics.Gpu/Image/TexturePool.cs +++ b/Ryujinx.Graphics.Gpu/Image/TexturePool.cs @@ -54,7 +54,7 @@ namespace Ryujinx.Graphics.Gpu.Image // Bad address. We can't add a texture with a invalid address // to the cache. - if (info.Address == MemoryManager.BadAddress) + if (info.Address == MemoryManager.PteUnmapped) { return null; } |
