From 1c8af28f2686ea854783a15d1d67c5853f2cd5f8 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Wed, 21 Jul 2021 16:50:49 +1000 Subject: [PATCH] Revert "[client] main: increase the ups/fps update rate to once per 100ms" This reverts commit b877bab48f87907fbeaa89f27862cc519968ade8. There is no need for this anymore after the prior commit which removed this faulty implementation --- client/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main.c b/client/src/main.c index 9bd139ea..2d3f81f1 100644 --- a/client/src/main.c +++ b/client/src/main.c @@ -147,7 +147,7 @@ static int renderThread(void * unused) /* start up the fps timer */ LGTimer * fpsTimer; - if (!lgCreateTimer(100, fpsTimerFn, NULL, &fpsTimer)) + if (!lgCreateTimer(1000, fpsTimerFn, NULL, &fpsTimer)) { DEBUG_ERROR("Failed to create the fps timer"); return 1;