fixed a bug in ESM::Variant::write (was affecting string values)

This commit is contained in:
Marc Zinnschlag 2013-03-21 12:57:10 +01:00
parent 9464f45d57
commit 1d1471b81c

View file

@ -186,7 +186,7 @@ void ESM::Variant::write (std::ostream& stream) const
case VT_String:
stream << "variant string: \"" << mData->getString() << "\2";
stream << "variant string: \"" << mData->getString() << "\"";
break;
}
}