mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-11 06:43:56 +00:00
[client] main: properly shutdown if renderer fails to init
This commit is contained in:
parent
f4fc1eb5f6
commit
aabf19e63b
2 changed files with 5 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
B1-rc3-0-g438e9e0969+1
|
B1-rc3-1-g84e5626fee+1
|
|
@ -95,7 +95,10 @@ static void updatePositionInfo()
|
||||||
static int renderThread(void * unused)
|
static int renderThread(void * unused)
|
||||||
{
|
{
|
||||||
if (!state.lgr->render_startup(state.lgrData, state.window))
|
if (!state.lgr->render_startup(state.lgrData, state.window))
|
||||||
|
{
|
||||||
|
state.running = false;
|
||||||
return 1;
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
// start the cursor thread after render startup to prevent a race condition
|
// start the cursor thread after render startup to prevent a race condition
|
||||||
SDL_Thread *t_cursor = NULL;
|
SDL_Thread *t_cursor = NULL;
|
||||||
|
|
Loading…
Reference in a new issue