mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-04-01 10:06:42 +00:00
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:
|
case VT_String:
|
||||||
|
|
||||||
stream << "variant string: \"" << mData->getString() << "\2";
|
stream << "variant string: \"" << mData->getString() << "\"";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue