diff options
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Shader/ShaderBundle.cs')
-rw-r--r-- | Ryujinx.Graphics.Gpu/Shader/ShaderBundle.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderBundle.cs b/Ryujinx.Graphics.Gpu/Shader/ShaderBundle.cs index de06e5e0..efdbc3eb 100644 --- a/Ryujinx.Graphics.Gpu/Shader/ShaderBundle.cs +++ b/Ryujinx.Graphics.Gpu/Shader/ShaderBundle.cs @@ -39,7 +39,7 @@ namespace Ryujinx.Graphics.Gpu.Shader foreach (ShaderCodeHolder holder in Shaders) { - holder?.HostShader.Dispose(); + holder?.HostShader?.Dispose(); } } } |