mirror of https://github.com/PCSX2/pcsx2.git
GS/HW: Fix CRC hack for Growlanser V not checking for null
This commit is contained in:
parent
d609c2b0ff
commit
df2311cdaf
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue