mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 18:04:09 +03:00
Rename number to number_words
This is to clarify that it returns the word forms of numbers, not numbers themselves.
This commit is contained in:
@@ -201,7 +201,7 @@ std::string UtilityClass::timestring( int t )
|
||||
return tempstring;
|
||||
}
|
||||
|
||||
std::string UtilityClass::number( int _t )
|
||||
std::string UtilityClass::number_words( int _t )
|
||||
{
|
||||
static const std::string ones_place[] = {"One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine"};
|
||||
static const std::string tens_place[] = {"Ten", "Twenty", "Thirty", "Forty", "Fifty", "Sixty", "Seventy", "Eighty", "Ninety"};
|
||||
|
||||
Reference in New Issue
Block a user