forked from mirror/openmw-tes3mp
fixed a bug in ESM::Variant::write (was affecting string values)
This commit is contained in:
parent
9464f45d57
commit
1d1471b81c
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue