Add StrRepeat string expression to repeat a string

This commit is contained in:
Victor Levasseur
2016-12-28 18:04:12 +01:00
committed by Victor Levasseur
parent fd67843d0d
commit 7ad075cb59
7 changed files with 42 additions and 5 deletions
@@ -58,7 +58,6 @@ void RuntimeTextEntryObject::Update(const RuntimeScene & scene)
//Skip some non displayable characters
if (characters[i] > 30 && (characters[i] < 127 || characters[i] > 159))
{
std::cout << characters[i] << std::endl;
text += static_cast<char32_t>(characters[i]);
}
else if (characters[i] == 8)