mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
5386779b82
commit
7fe180015e
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue