Update statswindow.cpp

Fixes a build issue on MSVC ('floor' : ambiguous call to overloaded function)
actorid
Alexander "Ace" Olofsson 11 years ago
parent ea8f60eddf
commit ddf72c06de

@ -186,7 +186,7 @@ namespace MWGui
if (widget)
{
int modified = value.getModified(), base = value.getBase();
std::string text = boost::lexical_cast<std::string>(std::floor(modified));
std::string text = boost::lexical_cast<std::string>(modified);
std::string state = "normal";
if (modified > base)
state = "increased";

Loading…
Cancel
Save