Skip to content
Snippets Groups Projects
Commit c8a96963 authored by Amorilia's avatar Amorilia
Browse files

fixed small error in NiStringExtraData asString() function

parent 52f0c465
No related branches found
No related tags found
No related merge requests found
...@@ -1805,7 +1805,7 @@ string NiStringExtraData::asString() { ...@@ -1805,7 +1805,7 @@ string NiStringExtraData::asString() {
attr_ref string_data = GetAttr("String Data"); attr_ref string_data = GetAttr("String Data");
out << next_data->GetName() << ": " << next_data->asLink() << endl out << next_data->GetName() << ": " << next_data->asLink() << endl
<< "Bytes Remaining: " << uint(strData.length()) + 4 << endl << "Bytes Remaining: " << uint(string_data->asString().length()) + 4 << endl
<< string_data->GetName() << ": " << string_data->asString() << endl; << string_data->GetName() << ": " << string_data->asString() << endl;
return out.str(); return out.str();
......
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