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(); \ }