aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2009-07-29 09:19:56 +0000
committerMax Horn2009-07-29 09:19:56 +0000
commit8bf0424832aaeb55f90af4332e5e02e4d69f58ce (patch)
tree636d1124d6954eb777ac4e22cde7e84bc978100e /gui
parent41139100a2c175929f8e85f6a7d26c4ee0974ac8 (diff)
downloadscummvm-rg350-8bf0424832aaeb55f90af4332e5e02e4d69f58ce.tar.gz
scummvm-rg350-8bf0424832aaeb55f90af4332e5e02e4d69f58ce.tar.bz2
scummvm-rg350-8bf0424832aaeb55f90af4332e5e02e4d69f58ce.zip
Sort audio output rates numerically (see FR #2821525)
svn-id: r42886
Diffstat (limited to 'gui')
-rw-r--r--gui/options.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/options.cpp b/gui/options.cpp
index 5991a204e9..0d2d6e0120 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -68,8 +68,8 @@ enum {
static const char *savePeriodLabels[] = { "Never", "every 5 mins", "every 10 mins", "every 15 mins", "every 30 mins", 0 };
static const int savePeriodValues[] = { 0, 5 * 60, 10 * 60, 15 * 60, 30 * 60, -1 };
-static const char *outputRateLabels[] = { "<default>", "22 kHz", "8 kHz", "11kHz", "44 kHz", "48 kHz", 0 };
-static const int outputRateValues[] = { 0, 22050, 8000, 11025, 44100, 48000, -1 };
+static const char *outputRateLabels[] = { "<default>", "8 kHz", "11kHz", "22 kHz", "44 kHz", "48 kHz", 0 };
+static const int outputRateValues[] = { 0, 8000, 11025, 22050, 44100, 48000, -1 };