Merge pull request #5753 from ZirconiumX/master

Explain what Yes/No means in an assert window
This commit is contained in:
Leo Lam 2017-07-07 16:56:21 +02:00 committed by GitHub
commit c941cd6aa9
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
#define _assert_msg_(_t_, _a_, _fmt_, ...) \
if (!(_a_)) \
{ \
if (!PanicYesNo(_fmt_, __VA_ARGS__)) \
if (!PanicYesNo(_fmt_ "\n\nIgnore and continue?", __VA_ARGS__)) \
Crash(); \
}