From 982663c728d80e4c4439d36c62550c2f721c3f6b Mon Sep 17 00:00:00 2001 From: Dan Ravensloft Date: Wed, 5 Jul 2017 19:16:11 +0000 Subject: [PATCH] Explain what Yes/No means in an assert window It's a bit confusing to get a yes/no dialogue box without any indication of what yes or no will do in this situation, so add a short explanatory sentence. --- Source/Core/Common/Assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Assert.h b/Source/Core/Common/Assert.h index fe067b900a..a1cd78d8d6 100644 --- a/Source/Core/Common/Assert.h +++ b/Source/Core/Common/Assert.h @@ -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(); \ }