[client] update dimension information after the first frame

This commit is contained in:
Geoffrey McRae 2017-12-21 06:38:34 +11:00
parent e5f86a824a
commit e3a426f378

View File

@ -121,6 +121,9 @@ struct AppParams params =
static inline void updatePositionInfo() static inline void updatePositionInfo()
{ {
if (!state.started)
return;
int w, h; int w, h;
SDL_GetWindowSize(state.window, &w, &h); SDL_GetWindowSize(state.window, &w, &h);
@ -355,8 +358,8 @@ int frameThread(void * unused)
if (!state.started) if (!state.started)
{ {
DEBUG_INFO("feed started");
state.started = true; state.started = true;
updatePositionInfo();
} }
} }