mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-14 04:57:54 +00:00
[host] app: fix infinate loop introduced in the last commit
This commit is contained in:
parent
ce459c24ce
commit
3ce3b573a3
1 changed files with 6 additions and 6 deletions
|
@ -148,12 +148,12 @@ static bool sendFrame(void)
|
|||
bool repeatFrame = false;
|
||||
|
||||
//wait until there is room in the queue
|
||||
while(app.state == APP_STATE_RUNNING)
|
||||
if(lgmpHostQueuePending(app.frameQueue) == LGMP_Q_FRAME_LEN)
|
||||
{
|
||||
usleep(1);
|
||||
continue;
|
||||
}
|
||||
while(app.state == APP_STATE_RUNNING &&
|
||||
lgmpHostQueuePending(app.frameQueue) == LGMP_Q_FRAME_LEN)
|
||||
{
|
||||
usleep(1);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (app.state != APP_STATE_RUNNING)
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue