From 70f75e1c995909144a3ac4c941bb83844838c9e3 Mon Sep 17 00:00:00 2001 From: nakeee Date: Thu, 19 Mar 2009 12:55:20 +0000 Subject: [PATCH] Change the return value of panicyesno to true It somehow escaped last commit git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2684 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/MsgHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Src/MsgHandler.cpp b/Source/Core/Common/Src/MsgHandler.cpp index 5d951fb6c8..f9e3625733 100644 --- a/Source/Core/Common/Src/MsgHandler.cpp +++ b/Source/Core/Common/Src/MsgHandler.cpp @@ -45,7 +45,7 @@ bool MsgAlert(const char* caption, bool yes_no, int Style, const char* format, . // Read message and write it to the log // ----------- char buffer[2048]; - bool ret = false; + bool ret = true; va_list args; va_start(args, format);