Bowarc / chess_game

A multiplayer chess game made with ggez
1 stars 1 forks source link

Asset loader cpu intensive loop #42

Closed Bowarc closed 9 months ago

Bowarc commented 11 months ago

Currently the loader thread is running in a loop that is only slowed by a 10ms test delay.

The fix could be: run at 10 tps, but if you got a request on this update, dont sleep this frame.

Bowarc commented 11 months ago

Or simply just set this line to a blocking .recv()

hugolz commented 9 months ago

Fixed in 53c4d3d