diff --git a/pcsx2/Vif.cpp b/pcsx2/Vif.cpp index a2ebe6f961..3e6626391f 100644 --- a/pcsx2/Vif.cpp +++ b/pcsx2/Vif.cpp @@ -357,8 +357,10 @@ static void _UNPACKpart(u32 offnum, u32 &x, T y) } template -static void _UNPACKpart(u32 offnum, u32 &x, T y, int &size) +static void _UNPACKpart(u32 offnum, u32 &x, T y, int size) { + if(size == 0) return; + if (_vifRegs->offset == offnum) { switch (offnum) @@ -409,7 +411,12 @@ void __fastcall UNPACK_V3(u32 *dest, T *data, int size) _UNPACKpart(OFFSET_X, *dest++, *data++, size); _UNPACKpart(OFFSET_Y, *dest++, *data++, size); _UNPACKpart(OFFSET_Z, *dest++, *data++, size); - _UNPACKpart(OFFSET_W, *dest, *data); + //V3-# does some bizzare thing with alignment, every 6qw of data the W becomes 0 (strange console!) + if((_vif->qwcalign % 24) == 0) + _UNPACKpart(OFFSET_W, *dest, 0); + else + _UNPACKpart(OFFSET_W, *dest, *data); + if (_vifRegs->offset == 4) _vifRegs->offset = 0; } diff --git a/pcsx2/VifDma.cpp b/pcsx2/VifDma.cpp index 02361285c2..32840541c0 100644 --- a/pcsx2/VifDma.cpp +++ b/pcsx2/VifDma.cpp @@ -440,7 +440,7 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma Console::WriteLn("Unpack align offset = 0"); } destinc = (4 - ft->qsize) + unpacksize; - + vif->qwcalign += unpacksize * ft->dsize; func(dest, (u32*)cdata, unpacksize); size -= unpacksize * ft->dsize; cdata += unpacksize * ft->dsize; @@ -482,6 +482,7 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma while ((size >= ft->gsize) && (vifRegs->num > 0)) { + vif->qwcalign += ft->gsize; func(dest, (u32*)cdata, ft->qsize); cdata += ft->gsize; size -= ft->gsize; @@ -595,6 +596,7 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma while ((size >= ft->gsize) && (vifRegs->num > 0)) { + vif->qwcalign += ft->gsize; //Must do this before the transfer, else the confusing packets dont go right :P func(dest, (u32*)cdata, ft->qsize); cdata += ft->gsize; size -= ft->gsize; @@ -649,6 +651,7 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma //VIF_LOG("warning, end with size = %d", size); /* unpack one qword */ + vif->qwcalign += (size / ft->dsize) * ft->dsize; func(dest, (u32*)cdata, size / ft->dsize); size = 0; @@ -786,7 +789,7 @@ static __forceinline void vif0UNPACK(u32 *data) len = ((((32 >> vl) * (vn + 1)) * n) + 31) >> 5; } - vif0.wl = 0; + vif0.qwcalign = 0; vif0.cl = 0; vif0.tag.cmd = vif0.cmd; vif0.tag.addr &= 0xfff; @@ -1516,9 +1519,9 @@ static __forceinline void vif1UNPACK(u32 *data) else vif1.tag.addr = vif1Regs->code & 0x3ff; + vif1.qwcalign = 0; vif1.cl = 0; vif1.tag.addr <<= 4; - vif1.tag.cmd = vif1.cmd; } diff --git a/pcsx2/VifDma.h b/pcsx2/VifDma.h index a7fed1c30b..6af78214e7 100644 --- a/pcsx2/VifDma.h +++ b/pcsx2/VifDma.h @@ -32,7 +32,7 @@ struct vifStruct { int cmd; int irq; int cl; - int wl; + int qwcalign; u8 usn; // The next three should be boolean, and will be next time I break savestate compatability. --arcum42