Skip to content
Snippets Groups Projects
Commit 1b945dad authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix usage of LLResMgr::getIntegerString with same output string multiple times

parent aa47b80d
No related branches found
No related tags found
No related merge requests found
...@@ -254,6 +254,7 @@ void LLResMgr::getIntegerString( std::string& output, S32 input ) const ...@@ -254,6 +254,7 @@ void LLResMgr::getIntegerString( std::string& output, S32 input ) const
} }
// *NOTE: this method does not handle negative input integers correctly // *NOTE: this method does not handle negative input integers correctly
output.clear();
S32 fraction = 0; S32 fraction = 0;
std::string fraction_string; std::string fraction_string;
S32 remaining_count = input; S32 remaining_count = input;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment