File diff r6225:10a046e3989a → r6226:6350e47be929
src/currency.cpp
Show inline comments
 
@@ -170,13 +170,13 @@ void ResetCurrencies(void)
 
 * Build a list of currency names StringIDs to use in a dropdown list
 
 * @return Pointer to a (static) array of StringIDs
 
 */
 
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 */
 
	for (i = 0; i < NUM_CURRENCY; i++) {
 
		names[i] = _currency_specs[i].name;
 
	}