mirror of https://github.com/PCSX2/pcsx2.git
Gif: Allow flag setting for PRIM/REG transfers on 0 length packets. Fixes Reservoir Dogs
This commit is contained in:
parent
f6e4a3081d
commit
6d7e2c56d9
|
@ -290,8 +290,8 @@ struct Gif_Path {
|
|||
|
||||
gifTag.setTag(&buffer[curOffset], 1);
|
||||
|
||||
//Don't set state to PACKED if it is a NOP packet
|
||||
if(gifTag.tag.NLOOP > 0)
|
||||
//Don't set state to PACKED if it is a NOP packet. Must check if PRIM or Regs are transferring
|
||||
if (gifTag.tag.NLOOP > 0 || gifTag.tag.NREG != 0 || gifTag.tag.PRE)
|
||||
state = (GIF_PATH_STATE)(gifTag.tag.FLG + 1);
|
||||
|
||||
// We don't have enough data for a complete GS packet
|
||||
|
|
Loading…
Reference in New Issue