pcsx2: replace error message with a dev assert

Code mustn't be reached. Otherwise registers aren't properly freed
This commit is contained in:
Gregory Hainaut 2015-10-12 21:38:27 +02:00
parent 2eefc135e5
commit 63889d3bea
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ int _getFreeXMMreg()
_freeXMMreg(tempi);
return tempi;
}
Console.Error("*PCSX2*: XMM Reg Allocation Error in _getFreeXMMreg()!");
pxFailDev("*PCSX2*: XMM Reg Allocation Error in _getFreeXMMreg()!");
return -1;
}