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

actorid
Marc Zinnschlag 12 years ago
parent 9464f45d57
commit 1d1471b81c

@ -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;
}
}

Loading…
Cancel
Save