mirror of https://github.com/PCSX2/pcsx2.git
Presets: Now the first preset is numbered "1" (was 0). 0 based index is not for mere mortals..
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4227 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
ac552aae56
commit
09c846c39b
|
@ -750,7 +750,7 @@ bool AppConfig::isOkGetPresetTextAndColor( int n, wxString& label, wxColor& c )
|
|||
if( n<0 || n>GeMaxPresetIndex() )
|
||||
return false;
|
||||
|
||||
label = wxString::Format(L"%d - ", n) + presetNamesAndColors[n][0];
|
||||
label = wxString::Format(L"%d - ", n+1) + presetNamesAndColors[n][0];
|
||||
c = wxColor(presetNamesAndColors[n][1]);
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue