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
This commit is contained in:
nakeee 2009-03-19 12:55:20 +00:00
parent bf0bd5f2d7
commit 70f75e1c99
1 changed files with 1 additions and 1 deletions

View File

@ -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);