From 50d7e364e74fbdd3e1a25a86613742c0f3867739 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sun, 25 Apr 2021 00:50:27 +0200 Subject: [PATCH] renamed function --- src/game.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/game.c b/src/game.c index 05de29db..5a88750f 100644 --- a/src/game.c +++ b/src/game.c @@ -1106,7 +1106,7 @@ void ContinueMoving(int, int); void Bang(int, int); void InitMovDir(int, int); void InitAmoebaNr(int, int); -int NewHiScore(int); +int NewHighScore(int); void TestIfGoodThingHitsBadThing(int, int, int); void TestIfBadThingHitsGoodThing(int, int, int); @@ -5019,7 +5019,7 @@ void GameEnd(void) } } - highlight_position = NewHiScore(last_level_nr); + highlight_position = NewHighScore(last_level_nr); if (highlight_position >= 0 && setup.show_scores_after_game) { @@ -5041,7 +5041,7 @@ void GameEnd(void) } } -int NewHiScore(int level_nr) +int NewHighScore(int level_nr) { int i, l; int position = -1; -- 2.34.1