[obs] add delay to fix startup

this delay is needed to allow the host clock to change so we can
validate the session.
This commit is contained in:
Geoffrey McRae 2020-05-21 09:37:20 +10:00
parent 240d0ff263
commit dc3e89e65c
2 changed files with 5 additions and 3 deletions

View File

@ -1 +1 @@
B1-202-g3b47a4113f+1
B1-203-g240d0ff263+1

View File

@ -175,8 +175,10 @@ static void lgUpdate(void * data, obs_data_t * settings)
!= LGMP_OK)
return;
if (lgmpClientSessionInit(this->lgmp, &udataSize, (uint8_t **)&udata)
!= LGMP_OK)
usleep(200000);
if (lgmpClientSessionInit(this->lgmp, &udataSize, (uint8_t **)&udata)
!= LGMP_OK)
return;
if (udataSize != sizeof(KVMFR) ||