running whitespace.py

This commit is contained in:
konstin
2014-07-08 20:59:34 +02:00
parent a65959da42
commit ce7da4b237
17 changed files with 26 additions and 26 deletions
+2 -2
View File
@@ -531,9 +531,9 @@ namespace StringUtils
*/
irr::core::stringw loadingDots(float interval, int max_dots)
{
int nr_dots = int(floor(StkTime::getRealTime() / interval))
int nr_dots = int(floor(StkTime::getRealTime() / interval))
% (max_dots + 1);
return irr::core::stringw((std::string(nr_dots, '.') +
return irr::core::stringw((std::string(nr_dots, '.') +
std::string(max_dots - nr_dots, ' ')).c_str());
} // loadingDots