(svn r1408) -Fix: uninitialized variable :)

This commit is contained in:
darkvater 2005-01-06 22:50:48 +00:00
parent 63e97754fb
commit a3c0e81230

View File

@ -587,7 +587,7 @@ extern uint32 GetOldTownName(uint32 townnameparts, byte old_town_name_type);
static void FixTown(OldTown *o, int num, byte town_name_type)
{
Town *t;
uint i;
uint i = 0;
do {
t = GetTown(i);