Ticket #8702: default_text.patch
File default_text.patch, 1.3 KB (added by , 17 years ago) |
---|
-
gui/options.cpp
66 66 67 67 static const char *savePeriodLabels[] = { "Never", "every 5 mins", "every 10 mins", "every 15 mins", "every 30 mins", 0 }; 68 68 static const int savePeriodValues[] = { 0, 5 * 60, 10 * 60, 15 * 60, 30 * 60, -1 }; 69 static const char *outputRateLabels[] = { " Default", "22 kHz", "8 kHz", "11kHz", "44 kHz", "48 kHz", 0 };69 static const char *outputRateLabels[] = { "<default>", "22 kHz", "8 kHz", "11kHz", "44 kHz", "48 kHz", 0 }; 70 70 static const int outputRateValues[] = { 0, 22050, 8000, 11025, 44100, 48000, -1 }; 71 71 72 72 -
sound/mididrv.cpp
37 37 38 38 // The flags for the "auto" & "null" drivers indicate that they are anything 39 39 // you want it to be. 40 {"auto", " Default", MD_AUTO, MDT_MIDI | MDT_PCSPK | MDT_ADLIB | MDT_TOWNS},40 {"auto", "<default>", MD_AUTO, MDT_MIDI | MDT_PCSPK | MDT_ADLIB | MDT_TOWNS}, 41 41 {"null", "No music", MD_NULL, MDT_MIDI | MDT_PCSPK | MDT_ADLIB | MDT_TOWNS}, 42 42 43 43 #if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__SYMBIAN32__)