[client] fix usage of uninitialized time variable

This commit is contained in:
Geoffrey McRae 2020-10-30 02:36:12 +11:00
parent 4f9544d61d
commit c8f740c34e

View File

@ -162,6 +162,8 @@ static int renderThread(void * unused)
lgSignalEvent(e_startup); lgSignalEvent(e_startup);
struct timespec time; struct timespec time;
clock_gettime(CLOCK_MONOTONIC, &time);
while(state.state != APP_STATE_SHUTDOWN) while(state.state != APP_STATE_SHUTDOWN)
{ {
if (state.frameTime > 0) if (state.frameTime > 0)