mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-24 04:28:10 +00:00
[client] main: increase the ups/fps update rate to once per 100ms
This is so that we can use the ups information in the following commit.
This commit is contained in:
parent
e6e07e8f3f
commit
b877bab48f
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ static int renderThread(void * unused)
|
||||||
|
|
||||||
/* start up the fps timer */
|
/* start up the fps timer */
|
||||||
LGTimer * fpsTimer;
|
LGTimer * fpsTimer;
|
||||||
if (!lgCreateTimer(1000, fpsTimerFn, NULL, &fpsTimer))
|
if (!lgCreateTimer(100, fpsTimerFn, NULL, &fpsTimer))
|
||||||
{
|
{
|
||||||
DEBUG_ERROR("Failed to create the fps timer");
|
DEBUG_ERROR("Failed to create the fps timer");
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in a new issue