Changeset - r6226:6350e47be929
[Not reviewed]
master
0 1 0
rubidium - 17 years ago 2007-03-06 18:03:06
rubidium@openttd.org
(svn r9027) -Fix [FS#664]: desync caused by buffer overrun.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/currency.cpp
Show inline comments
 
@@ -173,7 +173,7 @@ void ResetCurrencies(void)
 
StringID* BuildCurrencyDropdown(void)
 
{
 
	/* Allow room for all currencies, plus a terminator entry */
 
	static StringID names[CUSTOM_CURRENCY_ID];
 
	static StringID names[NUM_CURRENCY + 1];
 
	uint i;
 

	
 
	/* Add each name */
0 comments (0 inline, 0 general)