summaryrefslogtreecommitdiff
path: root/plugins/dfsound/spucfg-0.1df
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-10-03 03:12:49 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-10-03 03:12:49 +0000
commit559e490f0cc14474dc331f85e2e8bcd35a4d3bd1 (patch)
treeae8ca602bfa712fb6dfeef16e8014e94e4dc2918 /plugins/dfsound/spucfg-0.1df
parent6bc1f5c773d385a8b0d265438577ea274a7fc414 (diff)
downloadpcsxr-559e490f0cc14474dc331f85e2e8bcd35a4d3bd1.tar.gz
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@30932 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins/dfsound/spucfg-0.1df')
-rw-r--r--plugins/dfsound/spucfg-0.1df/dfsound.glade220
-rw-r--r--plugins/dfsound/spucfg-0.1df/main.c15
2 files changed, 0 insertions, 35 deletions
diff --git a/plugins/dfsound/spucfg-0.1df/dfsound.glade2 b/plugins/dfsound/spucfg-0.1df/dfsound.glade2
index 577962c9..bc834599 100644
--- a/plugins/dfsound/spucfg-0.1df/dfsound.glade2
+++ b/plugins/dfsound/spucfg-0.1df/dfsound.glade2
@@ -259,26 +259,6 @@ Cubic</property>
<property name="spacing">6</property>
<child>
- <widget class="GtkCheckButton" id="chkEnableXA">
- <property name="visible">True</property>
- <property name="tooltip" translatable="yes">Enable or disable XA music.</property>
- <property name="can_focus">True</property>
- <property name="label" translatable="yes">Enable XA</property>
- <property name="use_underline">True</property>
- <property name="relief">GTK_RELIEF_NORMAL</property>
- <property name="focus_on_click">True</property>
- <property name="active">False</property>
- <property name="inconsistent">False</property>
- <property name="draw_indicator">True</property>
- </widget>
- <packing>
- <property name="padding">0</property>
- <property name="expand">False</property>
- <property name="fill">False</property>
- </packing>
- </child>
-
- <child>
<widget class="GtkCheckButton" id="chkXASpeed">
<property name="visible">True</property>
<property name="tooltip" translatable="yes">Choose this if XA music is played too quickly.</property>
diff --git a/plugins/dfsound/spucfg-0.1df/main.c b/plugins/dfsound/spucfg-0.1df/main.c
index 51d27254..66ba0936 100644
--- a/plugins/dfsound/spucfg-0.1df/main.c
+++ b/plugins/dfsound/spucfg-0.1df/main.c
@@ -160,18 +160,6 @@ int main(int argc, char *argv[])
gtk_combo_box_set_active(GTK_COMBO_BOX (glade_xml_get_widget(xml, "cbInterpolation2")), val);
if (pB) {
- strcpy(t, "\nUseXA");
- p = strstr(pB, t);
- if (p) {
- p = strstr(p, "=");
- len = 1;
- }
- val = set_limit (p, len, 0, 1);
- } else val = 1;
-
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON (glade_xml_get_widget(xml, "chkEnableXA")), val);
-
- if (pB) {
strcpy(t, "\nXAPitch");
p = strstr(pB, t);
if (p) {
@@ -315,9 +303,6 @@ void SaveConfig(GtkWidget *widget, gpointer user_data)
val = gtk_combo_box_get_active (GTK_COMBO_BOX (glade_xml_get_widget (xml, "cbInterpolation2")));
SetCfgVal(pB, "\nUseInterpolation", val);
- val = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (glade_xml_get_widget (xml, "chkEnableXA")));
- SetCfgVal(pB, "\nUseXA", val);
-
val = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (glade_xml_get_widget (xml, "chkXASpeed")));
SetCfgVal(pB, "\nXAPitch", val);