vifUnpack: Report the correct number of bytes

It now reports 6904 bytes instead of just less than 4GB.
This commit is contained in:
Jonathan Li 2017-01-07 14:49:33 +00:00
parent c2e21fa30e
commit 285bcbcec0
1 changed files with 1 additions and 1 deletions

View File

@ -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())
); );
} }