From 09c846c39bb58ce51dfd1da1f50d53d806107b12 Mon Sep 17 00:00:00 2001 From: "avihal@gmail.com" Date: Mon, 17 Jan 2011 00:42:36 +0000 Subject: [PATCH] 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 --- pcsx2/gui/AppConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/gui/AppConfig.cpp b/pcsx2/gui/AppConfig.cpp index 07161fc367..1181280747 100644 --- a/pcsx2/gui/AppConfig.cpp +++ b/pcsx2/gui/AppConfig.cpp @@ -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;