corrected order of ("packets lost" / "packets in") for info displays

master
Tank_Master 2011-09-04 15:24:05 -07:00
parent d14c49b8bf
commit 77e4a18d43
2 changed files with 2 additions and 2 deletions

View File

@ -793,7 +793,7 @@ std::string FSData::getMyInfo(int part)
support <<
info["CHANNEL"] << " " << info["VIEWER_VERSION_STR"] << "\n" <<
"Sim: " << info["HOSTNAME"] << "(" << info["HOSTIP"] << ") " << info["SERVER_VERSION"] << "\n" <<
"Packet loss: " << info["PACKETS_PCT"].asReal() << "% (" << info["PACKETS_IN"].asReal() << "/" << info["PACKETS_LOST"].asReal() << ")\n" <<
"Packet loss: " << info["PACKETS_PCT"].asReal() << "% (" << info["PACKETS_LOST"].asReal() << "/" << info["PACKETS_IN"].asReal() << ")\n" <<
"CPU: " << info["CPU"] << "\n" <<
"Memory: " << info["MEMORY_MB"] << "\n" <<
"OS: " << info["OS_VERSION"] << "\n" <<

View File

@ -444,7 +444,7 @@ void LLIMFloater::onSysinfoButtonClicked()
support <<
info["CHANNEL"] << " " << info["VIEWER_VERSION_STR"] << "\n" <<
"Sim: " << info["HOSTNAME"] << "(" << info["HOSTIP"] << ") " << info["SERVER_VERSION"] << "\n" <<
"Packet loss: " << info["PACKETS_PCT"].asReal() << "% (" << info["PACKETS_IN"].asReal() << "/" << info["PACKETS_LOST"].asReal() << ")\n" <<
"Packet loss: " << info["PACKETS_PCT"].asReal() << "% (" << info["PACKETS_LOST"].asReal() << "/" << info["PACKETS_IN"].asReal() << ")\n" <<
"CPU: " << info["CPU"] << "\n" <<
"Memory: " << info["MEMORY_MB"] << "\n" <<
"OS: " << info["OS_VERSION"] << "\n" <<