We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2921f8f commit 9106c64Copy full SHA for 9106c64
1 file changed
simd/simd.c
@@ -636,6 +636,9 @@ void gamefindcallback(uv_timer_t* handle)
636
uv_timer_stop(handle);
637
}
638
639
+ // start a timer to check if this game stops so we can start looking for a running game again if it does
640
+ uv_timer_start(&bridgeclosetimer, bridgeclosecallback, 5, 5000);
641
+
642
if(err == 0)
643
{
644
if(simds.notify == true)
@@ -702,8 +705,6 @@ void datacheckcallback(uv_timer_t* handle)
702
705
uv_timer_start(&datamaptimer, shmdatamapcallback, 2000, 16);
703
706
704
707
- // i can make this more frequent but i need to be conscious of resources, don't want to trash anyone's frame rates
- uv_timer_start(&bridgeclosetimer, bridgeclosecallback, 5, 5000);
708
709
710
0 commit comments