diff options
-rw-r--r-- | src/client/reputationwindow.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/reputationwindow.cc b/src/client/reputationwindow.cc index 2d15319..804ab50 100644 --- a/src/client/reputationwindow.cc +++ b/src/client/reputationwindow.cc @@ -165,7 +165,7 @@ void ReputationWindow::refresh() listitem->set_info((*it)->faction()); std::ostringstream strsortkey; - strsortkey << std::setfill('0') << std::setw(2) << (*it)->reputation() + 100; + strsortkey << std::setfill('0') << std::setw(3) << roundf((*it)->reputation() + 100); listitem->set_sortkey(strsortkey.str().c_str()); ReputationBar *bar = new ReputationBar(listitem); |