Assertions: Fix message not being included for pxAssert()

This commit is contained in:
Connor McLaughlin 2022-05-29 23:54:53 +10:00 committed by refractionpcsx2
parent 3888483fb4
commit 271e53a6bf
1 changed files with 2 additions and 2 deletions

View File

@ -133,8 +133,8 @@ extern void pxOnAssertFail(const char* file, int line, const char* func, const c
#endif
#define pxAssert(cond) pxAssertMsg(cond, nullptr)
#define pxAssume(cond) pxAssumeMsg(cond, nullptr)
#define pxAssert(cond) pxAssertMsg(cond, #cond)
#define pxAssume(cond) pxAssumeMsg(cond, #cond)
#define pxAssertRelease(cond, msg)