(svn r5496) -CodeChange: Removed two compiler warnings

- add newline at end of file in currency.c
 - remove unused (for now) CargosChangeInfo
This commit is contained in:
belugas 2006-07-14 17:54:04 +00:00
parent 5137591102
commit 5606e6d7b6
2 changed files with 2 additions and 6 deletions

View File

@ -98,3 +98,4 @@ void CheckSwitchToEuro(void)
AddNewsItem(STR_EURO_INTRODUCE, NEWS_FLAGS(NM_NORMAL, 0, NT_ECONOMY, 0), 0, 0);
}
}

View File

@ -1067,11 +1067,6 @@ static bool BridgeChangeInfo(uint brid, int numinfo, int prop, byte **bufp, int
return ret;
}
static bool CargosChangeInfo(uint gvid, int numinfo, int prop, byte **bufp, int len)
{
return false;
}
static bool GlobalVarChangeInfo(uint gvid, int numinfo, int prop, byte **bufp, int len)
{
byte *buf = *bufp;
@ -1131,7 +1126,7 @@ static void FeatureChangeInfo(byte *buf, int len)
/* GSF_GLOBALVAR */ GlobalVarChangeInfo,
/* GSF_INDUSTRYTILES */NULL,
/* GSF_INDUSTRIES */ NULL,
/* GSF_CARGOS */ CargosChangeInfo,
/* GSF_CARGOS */ NULL,
/* GSF_SOUNDFX */ NULL,
};