forked from organicmaps/organicmaps-tmp
Fixed precision
This commit is contained in:
parent
232f82675a
commit
3fe0d07d85
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ std::string GetRatingFormatted(float const rawRating)
|
|||
return kEmptyRatingSymbol;
|
||||
|
||||
std::ostringstream oss;
|
||||
oss << std::setprecision(1) << rawRating;
|
||||
oss << std::setprecision(2) << rawRating;
|
||||
return oss.str();
|
||||
}
|
||||
} // namespace rating
|
||||
|
|
Loading…
Add table
Reference in a new issue