0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

UI: Add large separator after obs initialization

This makes it so it's a bit more obvious when the primary initialization
has completed in the log file.
This commit is contained in:
jp9000 2015-07-05 23:42:46 -07:00
parent a5b4330e7a
commit d0d799465b

View File

@ -784,6 +784,9 @@ void OBSBasic::ResetOutputs()
}
}
#define MAIN_SEPARATOR \
"====================================================================="
void OBSBasic::OBSInit()
{
const char *sceneCollection = config_get_string(App()->GlobalConfig(),
@ -837,6 +840,8 @@ void OBSBasic::OBSInit()
AddExtraModulePaths();
obs_load_all_modules();
blog(LOG_INFO, MAIN_SEPARATOR);
ResetOutputs();
CreateHotkeys();