From 2c511fe33a49b3ebbf2411eb19851f75288833a2 Mon Sep 17 00:00:00 2001 From: Jeremy Rand Date: Fri, 4 Jun 2021 00:42:39 -0400 Subject: [PATCH] Add some todos for the networking code. --- BuGS/globalScores.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BuGS/globalScores.c b/BuGS/globalScores.c index a39bdc9..9afd7fe 100644 --- a/BuGS/globalScores.c +++ b/BuGS/globalScores.c @@ -577,5 +577,9 @@ void sendHighScore(void) timeout--; if (timeout == 0) return; + + // TODO - Provide some feedback that the score is being uploaded here. + // TODO - If there is a timeout, or a failure of some kind, perhaps ask the user if they would like to retry. + } while (networkGlobals->gameNetworkState > GAME_NETWORK_TCP_UNCONNECTED); }