Mercurial > audlegacy
diff Plugins/Input/modplug/gui/callbacks.cpp @ 924:5ef13028e42d trunk
[svn] Allow to disable grabbing Amiga MOD files so a diferent plugin such as UADE gets a chance. Adds a few extra magic strings for Amiga files. Amiga MOD grabbing defaults to on for that Just Works(TM) feeling.
| author | chainsaw |
|---|---|
| date | Tue, 11 Apr 2006 14:33:16 -0700 |
| parents | 9d393eabf984 |
| children | a8e4435f65f2 |
line wrap: on
line diff
--- a/Plugins/Input/modplug/gui/callbacks.cpp Mon Apr 10 17:18:44 2006 -0700 +++ b/Plugins/Input/modplug/gui/callbacks.cpp Tue Apr 11 14:33:16 2006 -0700 @@ -58,6 +58,10 @@ lProps.mNoiseReduction = true; else lProps.mNoiseReduction = false; + if(gtk_toggle_button_get_active((GtkToggleButton*)lookup_widget((GtkWidget*)button, "fxAmigaMOD"))) + lProps.mGrabAmigaMOD = true; + else + lProps.mGrabAmigaMOD = false; if(gtk_toggle_button_get_active((GtkToggleButton*)lookup_widget((GtkWidget*)button, "fxFastInfo"))) lProps.mFastinfo = true; else
