Fix null sampler crash

This commit is contained in:
Isaac Marovitz 2024-09-07 21:46:34 +02:00 committed by Isaac Marovitz
parent 1ff9c1098b
commit 80e8e1999b
1 changed files with 1 additions and 1 deletions

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
{