Indentation: Converted some spaces to tabs under pcsx2/gui.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4205 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
avihal@gmail.com 2011-01-12 18:36:19 +00:00
parent 5386779b82
commit 7fe180015e
18 changed files with 202 additions and 201 deletions

View File

@ -713,8 +713,9 @@ int AppConfig::GeMaxPresetIndex()
return 5;
}
bool AppConfig::isOkGetPresetTextAndColor(int n, wxString& label, wxColor& c){
static const wxString presetNamesAndColors[][2]=
bool AppConfig::isOkGetPresetTextAndColor( int n, wxString& label, wxColor& c )
{
static const wxString presetNamesAndColors[][2] =
{
{ pxE("!Panel:Presets:Name:1", L"Safest"), L"Forest GREEN" },
{ pxE("!Panel:Presets:Name:2", L"Safe (faster)"), L"Dark Green" },
@ -723,7 +724,7 @@ bool AppConfig::isOkGetPresetTextAndColor(int n, wxString& label, wxColor& c){
{ pxE("!Panel:Presets:Name:5", L"Aggressive plus"), L"Orange"},
{ pxE("!Panel:Presets:Name:6", L"Mostly Harmful"), L"Red" }
};
if ( n<0 || n>GeMaxPresetIndex() )
if( n<0 || n>GeMaxPresetIndex() )
return false;
label = wxString::Format(L"%d - ", n) + presetNamesAndColors[n][0];