Remove category from _assert_msg_ functions. We don't filter these by category anyway.

Fixes the inconsistency where we _assert_ didn't take a category but
_assert_msg_ did.
This commit is contained in:
Henrik Rydgård 2020-07-19 17:47:02 +02:00
parent 31fada55e6
commit c5e0b799d9
99 changed files with 1007 additions and 1015 deletions

View file

@ -561,7 +561,7 @@ int ArmRegCacheFPU::GetTempR() {
}
ERROR_LOG(CPU, "Out of temp regs! Might need to DiscardR() some");
_assert_msg_(JIT, 0, "Regcache ran out of temp regs, might need to DiscardR() some.");
_assert_msg_(false, "Regcache ran out of temp regs, might need to DiscardR() some.");
return -1;
}