diff src/echo_plugin/gui.c @ 2124:b8da6a0b0da2

s/bmp_cfg_/aud_cfg_/g
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 24 Oct 2007 07:34:02 +0300
parents 00394f91e3c6
children 4d6045c20cc5
line wrap: on
line diff
--- a/src/echo_plugin/gui.c	Wed Oct 24 07:32:18 2007 +0300
+++ b/src/echo_plugin/gui.c	Wed Oct 24 07:34:02 2007 +0300
@@ -39,12 +39,12 @@
 	echo_surround_enable =
 		gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(surround_btn));
 
-	cfg = bmp_cfg_db_open();
-	bmp_cfg_db_set_int(cfg, "echo_plugin", "delay", echo_delay);
-	bmp_cfg_db_set_int(cfg, "echo_plugin", "feedback", echo_feedback);
-	bmp_cfg_db_set_int(cfg, "echo_plugin", "volume", echo_volume);
-	bmp_cfg_db_set_bool(cfg, "echo_plugin", "enable_surround", echo_surround_enable);
-	bmp_cfg_db_close(cfg);
+	cfg = aud_cfg_db_open();
+	aud_cfg_db_set_int(cfg, "echo_plugin", "delay", echo_delay);
+	aud_cfg_db_set_int(cfg, "echo_plugin", "feedback", echo_feedback);
+	aud_cfg_db_set_int(cfg, "echo_plugin", "volume", echo_volume);
+	aud_cfg_db_set_bool(cfg, "echo_plugin", "enable_surround", echo_surround_enable);
+	aud_cfg_db_close(cfg);
 }
 
 static void conf_ok_cb(GtkButton * button, gpointer data)