diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-12-06 09:50:39 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2013-12-06 09:50:39 +0100 |
commit | be68dc962e6b853154a366889a3def0ab3d226e5 (patch) | |
tree | dc40dc3b8cc0349c476392c4a76e3f8b650ea702 /src/modules/mixer | |
parent | 9456e88504cb5daddbac3f49373a3a9a8577e27a (diff) | |
download | enlightenment-be68dc962e6b853154a366889a3def0ab3d226e5.tar.gz |
mixer: load module config in e_modapi_init(), same as others
Diffstat (limited to 'src/modules/mixer')
-rw-r--r-- | src/modules/mixer/e_mod_main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules/mixer/e_mod_main.c b/src/modules/mixer/e_mod_main.c index ee4c2b54b2..ec6b1b200f 100644 --- a/src/modules/mixer/e_mod_main.c +++ b/src/modules/mixer/e_mod_main.c @@ -1350,6 +1350,10 @@ e_modapi_init(E_Module *m) if (!ctxt) return NULL; + _mixer_module_configuration_setup(ctxt); + if (!ctxt->conf) + return NULL; + _mixer_configure_registry_register(); e_gadcon_provider_register(&_gc_class); if (!e_mixer_pulse_init()) e_mixer_default_setup(); |