From: Holger Schemel Date: Tue, 21 Jan 2025 18:30:33 +0000 (+0100) Subject: replaced code with equivalent function call X-Git-Tag: 4.4.0.3~12 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;h=5b1d6cf37ede38d86c270273daa1c611936b71e8;p=rocksndiamonds.git replaced code with equivalent function call --- diff --git a/src/game.c b/src/game.c index a47129c7..162e56a1 100644 --- a/src/game.c +++ b/src/game.c @@ -5055,9 +5055,7 @@ static void LevelSolved_SetFinalGameValues(void) MM_HEALTH(game_mm.laser_overload_value) : game.health); - game.LevelSolved_CountingTime = game.time_final; - game.LevelSolved_CountingScore = game.score_final; - game.LevelSolved_CountingHealth = game.health_final; + LevelSolved_UpdateFinalGameValues(game.time_final, game.score_final, game.health_final); } static void LevelSolved_DisplayFinalGameValues(int time, int score, int health)