mirror of https://github.com/OpenTTD/OpenTTD
(svn r1408) -Fix: uninitialized variable :)
parent
63e97754fb
commit
a3c0e81230
|
@ -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)
|
static void FixTown(OldTown *o, int num, byte town_name_type)
|
||||||
{
|
{
|
||||||
Town *t;
|
Town *t;
|
||||||
uint i;
|
uint i = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
t = GetTown(i);
|
t = GetTown(i);
|
||||||
|
|
Loading…
Reference in New Issue