Mercurial > audlegacy
diff Plugins/Input/modplug/gui/callbacks.cpp @ 1041:a8e4435f65f2 trunk
[svn] 48kHz sampling rate selection for ModPlug by Christian Birchinger (Joker) from Gentoo.
| author | chainsaw |
|---|---|
| date | Sun, 14 May 2006 08:38:23 -0700 |
| parents | 5ef13028e42d |
| children |
line wrap: on
line diff
--- a/Plugins/Input/modplug/gui/callbacks.cpp Sun May 14 01:20:40 2006 -0700 +++ b/Plugins/Input/modplug/gui/callbacks.cpp Sun May 14 08:38:23 2006 -0700 @@ -37,6 +37,8 @@ lProps.mFrequency = 11025; else if (gtk_toggle_button_get_active((GtkToggleButton*)lookup_widget((GtkWidget*)button, "samp22"))) lProps.mFrequency = 22050; + else if (gtk_toggle_button_get_active((GtkToggleButton*)lookup_widget((GtkWidget*)button, "samp48"))) + lProps.mFrequency = 48000; else lProps.mFrequency = 44100;
