get rid of the '¯' chars in source code...non ascii chars are not really good to have floating around for no reason. http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=Non-ASCII_Characters#Non-ASCII_Characters

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4231 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2009-09-08 16:07:13 +00:00
commit 3b76f6dc80
41 changed files with 162 additions and 162 deletions

View file

@ -1,6 +1,6 @@
// Project description
// ッッッッッッッッッッッッッッッッッッッ
// -------------------
// Name: nJoy
// Description: A Dolphin Compatible Input Plugin
//
@ -32,7 +32,7 @@
// Include
// ッッッッッッッッッ
// ---------
#include "math.h" // System
#include "ConfigBox.h" // Local
@ -44,7 +44,7 @@ extern bool g_EmulatorRunning;
// Set dialog items from saved values
// ッッッッッッッッッッッッッッッッ
// ----------------
void PADConfigDialognJoy::UpdateGUIButtonMapping(int controller)
{
// http://wiki.wxwidgets.org/Converting_everything_to_and_from_wxString
@ -177,7 +177,7 @@ void PADConfigDialognJoy::SaveButtonMapping(int controller, bool DontChangeId, i
}
// Update the textbox for the buttons
// ッッッッッッッッッッッッッッッッ
// ----------------
void PADConfigDialognJoy::SetButtonText(int id, const char *text, int Page)
{
// Set controller value
@ -212,7 +212,7 @@ void PADConfigDialognJoy::SetButtonText(int id, const char *text, int Page)
}
// Get the text in the textbox for the buttons
// ッッッッッッッッッッッッッッッッ
// ----------------
wxString PADConfigDialognJoy::GetButtonText(int id, int Page)
{
// Set controller value
@ -253,11 +253,11 @@ wxString PADConfigDialognJoy::GetButtonText(int id, int Page)
// Configure button mapping
// ッッッッッッッッッッ
// ----------
// Wait for button press
// ッッッッッッッッッッッッッッッッッッッッッ
// ---------------------
/* Loop or timer: There are basically two ways to do this. With a while() or for() loop, or with a
timer. The downside with the while() or for() loop is that there is no way to stop it if the user
should select to configure another button while we are still in an old loop. What will happen then