From 459239c9d2d3ea5605fb97d4f205173823b16a3c Mon Sep 17 00:00:00 2001 From: smatz Date: Tue, 27 May 2008 20:25:28 +0000 Subject: (svn r13298) -Codechange: remove unused _total_signs --- src/signs.cpp | 7 ------- src/signs_base.h | 6 ------ 2 files changed, 13 deletions(-) diff --git a/src/signs.cpp b/src/signs.cpp index 1e5d40860..8c1ad123c 100644 --- a/src/signs.cpp +++ b/src/signs.cpp @@ -24,7 +24,6 @@ #include "table/strings.h" SignID _new_sign_id; -uint _total_signs; bool _sign_sort_dirty; /* Initialize the sign-pool */ @@ -115,7 +114,6 @@ CommandCost CmdPlaceSign(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) InvalidateWindow(WC_SIGN_LIST, 0); _sign_sort_dirty = true; _new_sign_id = si->index; - _total_signs++; } return CommandCost(); @@ -162,7 +160,6 @@ CommandCost CmdRenameSign(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) InvalidateWindow(WC_SIGN_LIST, 0); _sign_sort_dirty = true; - _total_signs--; } } @@ -202,7 +199,6 @@ void PlaceProc_Sign(TileIndex tile) */ void InitializeSigns() { - _total_signs = 0; _Sign_pool.CleanPool(); _Sign_pool.AddBlockToPool(); } @@ -241,13 +237,10 @@ static void Save_SIGN() */ static void Load_SIGN() { - _total_signs = 0; int index; while ((index = SlIterateArray()) != -1) { Sign *si = new (index) Sign(); SlObject(si, _sign_desc); - - _total_signs++; } _sign_sort_dirty = true; diff --git a/src/signs_base.h b/src/signs_base.h index e27441cb4..4d0d05926 100644 --- a/src/signs_base.h +++ b/src/signs_base.h @@ -40,12 +40,6 @@ static inline SignID GetMaxSignIndex() return GetSignPoolSize() - 1; } -static inline uint GetNumSigns() -{ - extern uint _total_signs; - return _total_signs; -} - static inline bool IsValidSignID(uint index) { return index < GetSignPoolSize() && GetSign(index)->IsValid(); -- cgit v1.2.3-54-g00ecf