Set gameloop to 8fps for now to avoid issues

This commit is contained in:
Paul Dino Jones 2024-09-02 11:13:19 -04:00
parent df0ad1f5c9
commit fd1264611c
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ void datacheckcallback(uv_timer_t* handle)
{ {
appstate++; appstate++;
doui = true; doui = true;
uv_timer_start(&datamaptimer, shmdatamapcallback, 2000, 16); uv_timer_start(&datamaptimer, shmdatamapcallback, 2000, 125);
uv_timer_stop(handle); uv_timer_stop(handle);
} }
} }