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
parent 463e93c41a
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 "ConfigBox.h"
#include "../nJoy.h"
#include "Images/controller.xpm"
@ -45,7 +45,7 @@ extern bool g_EmulatorRunning;
bool StrangeHack = true;
// Set PAD status
// ッッッッッッッッッッッッッッ
// --------------
void PADConfigDialognJoy::PadGetStatus()
{
/* Return if it's not detected. The ID should never be less than zero here, it can only be that
@ -64,7 +64,7 @@ void PADConfigDialognJoy::PadGetStatus()
// Analog stick
// ッッッッッッッッッッッッッッッッッ
// -----------------
// Set Deadzones perhaps out of function
//int deadzone = (int)(((float)(128.00/100.00)) * (float)(PadMapping[_numPAD].deadzone+1));
//int deadzone2 = (int)(((float)(-128.00/100.00)) * (float)(PadMapping[_numPAD].deadzone+1));
@ -123,7 +123,7 @@ void PADConfigDialognJoy::PadGetStatus()
// Triggers
// ッッッッッッッッッッッッッッッッッ
// -----------------
int TriggerValue = 255;
if (PadState[notebookpage].halfpress) TriggerValue = 100;
@ -159,7 +159,7 @@ void PADConfigDialognJoy::PadGetStatus()
}
// Show the current pad status
// ッッッッッッッッッッッッッッッッッ
// -----------------
std::string ShowStatus(int VirtualController)
{
// Save the physical device
@ -237,7 +237,7 @@ std::string ShowStatus(int VirtualController)
}
// Populate the advanced tab
// ッッッッッッッッッッッッッッッッッ
// -----------------
void PADConfigDialognJoy::Update()
{
// Check that Dolphin is in focus, otherwise don't update the pad status
@ -265,7 +265,7 @@ void PADConfigDialognJoy::Update()
// Populate the advanced tab
// ッッッッッッッッッッッッッッッッッ
// -----------------
void PADConfigDialognJoy::CreateAdvancedControls(int i)
{
// Main-stick
@ -320,7 +320,7 @@ void PADConfigDialognJoy::CreateAdvancedControls(int i)
// Rerecording
// ッッッッッッッッッ
// ---------
#ifdef RERECORDING
// Create controls
m_SizeRecording[i] = new wxStaticBoxSizer(wxVERTICAL, m_Controller[i], wxT("Input Recording"));