Make FPU vector unsigned

Value must be unsigned to yield proper output.
This commit is contained in:
Kawe Mazidjatari 2022-12-27 14:21:20 +01:00
parent 57c71b8ee4
commit b48f028b5a

View File

@ -323,7 +323,7 @@ void CCrashHandler::FormatAPU(const char* pszRegister, DWORD64 nContent)
//-----------------------------------------------------------------------------
void CCrashHandler::FormatFPU(const char* pszRegister, M128A* pxContent)
{
int nVec[4] =
DWORD nVec[4] =
{
pxContent->Low & INT_MAX,
pxContent->Low >> 32,