From 17c73b8df9cb03e7b3c2a7b6c0b997b206e6aa25 Mon Sep 17 00:00:00 2001 From: John Peterson Date: Wed, 12 Nov 2008 19:55:32 +0000 Subject: [PATCH] Changed panic to regular message. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1155 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_Wiimote_Test/Src/FillReport.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/Plugins/Plugin_Wiimote_Test/Src/FillReport.cpp b/Source/Plugins/Plugin_Wiimote_Test/Src/FillReport.cpp index a7414d65c7..1c1ca3ad43 100644 --- a/Source/Plugins/Plugin_Wiimote_Test/Src/FillReport.cpp +++ b/Source/Plugins/Plugin_Wiimote_Test/Src/FillReport.cpp @@ -16,6 +16,8 @@ // http://code.google.com/p/dolphin-emu/ +#include + #include "pluginspecs_wiimote.h" #include @@ -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; }