mirror of https://github.com/PCSX2/pcsx2.git
Assertions: Fix message not being included for pxAssert()
This commit is contained in:
parent
3888483fb4
commit
271e53a6bf
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue