Remove version parameter from obs_module_load

Replaced by obs_get_version() API
This commit is contained in:
jp9000
2014-07-27 12:42:43 -07:00
parent 59ea3becf2
commit f0ac19abba
19 changed files with 19 additions and 51 deletions

View File

@@ -5,11 +5,9 @@ OBS_MODULE_USE_DEFAULT_LOCALE("obs-x264", "en-US")
extern struct obs_encoder_info obs_x264_encoder;
bool obs_module_load(uint32_t libobs_ver)
bool obs_module_load(void)
{
obs_register_encoder(&obs_x264_encoder);
UNUSED_PARAMETER(libobs_ver);
return true;
}