GS/HW: Fix CRC hack for Growlanser V not checking for null

This commit is contained in:
refractionpcsx2 2023-08-22 21:26:43 +01:00
parent d609c2b0ff
commit df2311cdaf
1 changed files with 1 additions and 1 deletions

View File

@ -1283,7 +1283,7 @@ static bool GetMoveTargetPair(GSRendererHW& r, GSTextureCache::Target** src, GIF
GSLocalMemory::m_psm[src_desc.PSM].depth ? GSTextureCache::DepthStencil : GSTextureCache::RenderTarget;
GSTextureCache::Target* tsrc =
g_texture_cache->LookupTarget(src_desc, GSVector2i(1, 1), r.GetTextureScaleFactor(), src_type);
if (!src)
if (!tsrc)
return false;
// The target might not.