mirror of
https://github.com/libretro/Play-.git
synced 2025-03-03 16:57:03 +00:00
Also set CL to UINT_MAX when WL equals 0
This commit is contained in:
parent
ea777a3740
commit
9b1b799b14
@ -576,7 +576,11 @@ void CVif::Cmd_UNPACK(StreamType& stream, CODE nCommand, uint32 nDstAddr)
|
||||
bool useMask = (nCommand.nCMD & 0x10) != 0;
|
||||
uint32 cl = m_CYCLE.nCL;
|
||||
uint32 wl = m_CYCLE.nWL;
|
||||
if(wl == 0) wl = UINT_MAX;
|
||||
if(wl == 0)
|
||||
{
|
||||
wl = UINT_MAX;
|
||||
cl = UINT_MAX;
|
||||
}
|
||||
|
||||
if(m_NUM == nCommand.nNUM)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user