Mercurial > audlegacy-plugins
diff src/CoreAudio/configure.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 | 2ebeb7816c5e |
| children | e5401b6c4665 |
line wrap: on
line diff
--- a/src/CoreAudio/configure.c Wed Oct 24 07:32:18 2007 +0300 +++ b/src/CoreAudio/configure.c Wed Oct 24 07:34:02 2007 +0300 @@ -62,18 +62,18 @@ if (osx_cfg.alt_mixer_device[0] != '/') osx_cfg.use_alt_mixer_device = FALSE; - cfgfile = bmp_cfg_db_open(); + cfgfile = aud_cfg_db_open(); - bmp_cfg_db_set_int(cfgfile, "OSX", "audio_device", osx_cfg.audio_device); - bmp_cfg_db_set_int(cfgfile, "OSX", "mixer_device", osx_cfg.mixer_device); - bmp_cfg_db_set_int(cfgfile, "OSX", "buffer_size", osx_cfg.buffer_size); - bmp_cfg_db_set_int(cfgfile, "OSX", "prebuffer", osx_cfg.prebuffer); - bmp_cfg_db_set_bool(cfgfile,"OSX","use_master",osx_cfg.use_master); - bmp_cfg_db_set_bool(cfgfile, "OSX", "use_alt_audio_device", osx_cfg.use_alt_audio_device); - bmp_cfg_db_set_string(cfgfile, "OSX", "alt_audio_device", osx_cfg.alt_audio_device); - bmp_cfg_db_set_bool(cfgfile, "OSX", "use_alt_mixer_device", osx_cfg.use_alt_mixer_device); - bmp_cfg_db_set_string(cfgfile, "OSX", "alt_mixer_device", osx_cfg.alt_mixer_device); - bmp_cfg_db_close(cfgfile); + aud_cfg_db_set_int(cfgfile, "OSX", "audio_device", osx_cfg.audio_device); + aud_cfg_db_set_int(cfgfile, "OSX", "mixer_device", osx_cfg.mixer_device); + aud_cfg_db_set_int(cfgfile, "OSX", "buffer_size", osx_cfg.buffer_size); + aud_cfg_db_set_int(cfgfile, "OSX", "prebuffer", osx_cfg.prebuffer); + aud_cfg_db_set_bool(cfgfile,"OSX","use_master",osx_cfg.use_master); + aud_cfg_db_set_bool(cfgfile, "OSX", "use_alt_audio_device", osx_cfg.use_alt_audio_device); + aud_cfg_db_set_string(cfgfile, "OSX", "alt_audio_device", osx_cfg.alt_audio_device); + aud_cfg_db_set_bool(cfgfile, "OSX", "use_alt_mixer_device", osx_cfg.use_alt_mixer_device); + aud_cfg_db_set_string(cfgfile, "OSX", "alt_mixer_device", osx_cfg.alt_mixer_device); + aud_cfg_db_close(cfgfile); gtk_widget_destroy(configure_win); }
