Remove the IntToString function, use std.
...this seriously didn't belong in Rage.
This commit is contained in:
@@ -98,7 +98,7 @@ struct MenuRowDef
|
||||
{
|
||||
for ( int i = low; i <= high; i++ )
|
||||
{
|
||||
choices.push_back(IntToString(i).c_str());
|
||||
choices.push_back(std::to_string(i));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user