Rename function

This commit is contained in:
WarmUpTill 2024-02-17 11:21:57 +01:00 committed by WarmUpTill
parent 87c18143a2
commit 6cbfc48736
2 changed files with 3 additions and 3 deletions

View File

@ -767,7 +767,7 @@ QWidget *GetSettingsWindow()
void SetupActionQueues();
extern "C" EXPORT void RunPostLoadSteps()
extern "C" EXPORT void RunPluginPostLoadSteps()
{
for (const auto &postLoadStep : switcher->pluginPostLoadSteps) {
postLoadStep();

View File

@ -7,12 +7,12 @@ OBS_MODULE_USE_DEFAULT_LOCALE("advanced-scene-switcher", "en-US")
typedef const char *(*translateFunc)(const char *);
void InitSceneSwitcher(obs_module_t *, translateFunc);
void RunPostLoadSteps();
void RunPluginPostLoadSteps();
void FreeSceneSwitcher();
void obs_module_post_load(void)
{
RunPostLoadSteps();
RunPluginPostLoadSteps();
}
bool obs_module_load(void)