Changed panic to regular message.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1155 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson 2008-11-12 19:55:32 +00:00
parent 497e6656cf
commit 17c73b8df9
1 changed files with 4 additions and 1 deletions

View File

@ -16,6 +16,8 @@
// http://code.google.com/p/dolphin-emu/
#include <wx/msgdlg.h>
#include "pluginspecs_wiimote.h"
#include <vector>
@ -60,7 +62,8 @@ void FillReportInfo(wm_core& _core)
if(GetAsyncKeyState('T'))
{
PanicAlert("You turned %s sideways controls", toggleSideWays ? "off" : "on");
wxMessageBox(wxString::Format("You turned %s sideways controls",
toggleSideWays ? "off" : "on"));
toggleSideWays = !toggleSideWays;
}