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:
avihal@gmail.com 2011-01-17 00:42:36 +00:00
parent ac552aae56
commit 09c846c39b
1 changed files with 1 additions and 1 deletions

View File

@ -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;