From: Holger Schemel Date: Sat, 24 Apr 2021 22:50:27 +0000 (+0200) Subject: renamed function X-Git-Tag: 4.3.0.0~185 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;ds=sidebyside;h=50d7e364e74fbdd3e1a25a86613742c0f3867739;p=rocksndiamonds.git renamed function --- 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;