From 518d96ad48c34815f16e64c690c9526709c88e53 Mon Sep 17 00:00:00 2001 From: Silent Date: Sun, 21 Jul 2019 08:50:35 +0200 Subject: [PATCH] Remove duplicated "Ignore and countinue?" --- 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 5be700f338..661dba5d8e 100644 --- a/Source/Core/Common/Assert.h +++ b/Source/Core/Common/Assert.h @@ -15,7 +15,7 @@ { \ if (!(_a_)) \ { \ - if (!PanicYesNo(_fmt_ "\n\nIgnore and continue?", __VA_ARGS__)) \ + if (!PanicYesNo(_fmt_, __VA_ARGS__)) \ Crash(); \ } \ } while (0)