Remove macro to free locale

This functionality can now be handled automatically because locale can
now be freed seaparately from obs_module_unload with
obs_module_free_locale, which is called automatically when the module is
being freed.
This commit is contained in:
jp9000
2014-07-27 12:44:28 -07:00
parent f0ac19abba
commit 892fdea83e
16 changed files with 4 additions and 72 deletions

View File

@@ -10,8 +10,3 @@ bool obs_module_load(void)
obs_register_source(&av_capture_info);
return true;
}
void obs_module_unload(void)
{
OBS_MODULE_FREE_DEFAULT_LOCALE();
}