mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-04 09:45:34 +00:00
removed automatic detection of setting modified to the same value of base with subsequent setting modifiction state to base only (can cause problems with implicitly added records)
This commit is contained in:
parent
a955068853
commit
947ab6635b
1 changed files with 1 additions and 3 deletions
|
@ -81,9 +81,7 @@ namespace CSMWorld
|
|||
throw std::logic_error ("attempt to modify a deleted record");
|
||||
|
||||
mModified = modified;
|
||||
|
||||
if (mState!=State_ModifiedOnly)
|
||||
mState = mBase==mModified ? State_BaseOnly : State_Modified;
|
||||
mState = State_Modified;
|
||||
}
|
||||
|
||||
template <typename ESXRecordT>
|
||||
|
|
Loading…
Reference in a new issue