Changeset - r9388:130cdda71bbe
[Not reviewed]
master
0 2 0
smatz - 16 years ago 2008-05-27 20:25:28
smatz@openttd.org
(svn r13298) -Codechange: remove unused _total_signs
2 files changed with 0 insertions and 13 deletions:
0 comments (0 inline, 0 general)
src/signs.cpp
Show inline comments
 
@@ -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,
 
		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
 

	
 
			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;
src/signs_base.h
Show inline comments
 
@@ -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();
0 comments (0 inline, 0 general)