mirror of https://github.com/PCSX2/pcsx2.git
vifUnpack: Report the correct number of bytes
It now reports 6904 bytes instead of just less than 4GB.
This commit is contained in:
parent
c2e21fa30e
commit
285bcbcec0
|
@ -440,7 +440,7 @@ void VifUnpackSSE_Init()
|
||||||
L"x86 code generated : %u bytes\n",
|
L"x86 code generated : %u bytes\n",
|
||||||
(uint)nVifUpkExec->GetCommittedBytes(),
|
(uint)nVifUpkExec->GetCommittedBytes(),
|
||||||
pxsPtr(nVifUpkExec->GetPtr()),
|
pxsPtr(nVifUpkExec->GetPtr()),
|
||||||
(uint)(nVifUpkExec->GetPtr() - xGetPtr())
|
(uint)(xGetPtr() - nVifUpkExec->GetPtr())
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue