From 0b156f1d26abd336cdfff540a753741359dfb3ef Mon Sep 17 00:00:00 2001 From: Nikolay Korolev Date: Sun, 7 Jun 2020 15:23:52 +0300 Subject: some stats tweaks; saves dead again --- src/core/Stats.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/core/Stats.h') diff --git a/src/core/Stats.h b/src/core/Stats.h index 33d4ef72..8588fef1 100644 --- a/src/core/Stats.h +++ b/src/core/Stats.h @@ -6,8 +6,9 @@ class CStats { public: enum { - TOTAL_FASTEST_TIMES = 16, - TOTAL_HIGHEST_SCORES = 16 + TOTAL_FASTEST_TIMES = 23, + TOTAL_HIGHEST_SCORES = 5, + TOTAL_BEST_POSITIONS = 1 }; //TODO static int32 SeagullsKilled; @@ -65,6 +66,7 @@ public: static int32 CarsCrushed; static int32 FastestTimes[TOTAL_FASTEST_TIMES]; static int32 HighestScores[TOTAL_HIGHEST_SCORES]; + static int32 BestPositions[TOTAL_BEST_POSITIONS]; static int32 PropertyDestroyed; static int32 Sprayings; static float AutoPaintingBudget; @@ -77,6 +79,7 @@ public: static void Init(void); static void RegisterFastestTime(int32, int32); static void RegisterHighestScore(int32, int32); + static void RegisterBestPosition(int32, int32); static void RegisterElBurroTime(int32); static void Register4x4OneTime(int32); static void Register4x4TwoTime(int32); -- cgit v1.2.3