Fix null sampler crash

This commit is contained in:
Isaac Marovitz 2024-09-07 21:46:34 +02:00 committed by Evan Husted
parent d23de14812
commit fe4c77788f

View File

@ -869,7 +869,7 @@ namespace Ryujinx.Graphics.Metal
{
if (texture != null)
{
_currentState.TextureRefs[binding] = new(stage, texture, samplerHolder.GetSampler());
_currentState.TextureRefs[binding] = new(stage, texture, samplerHolder?.GetSampler());
}
else
{