forked from mirror/openmw-tes3mp
Fixed build errors in OpenCS
This commit is contained in:
parent
f9a0a19ee1
commit
0ae01794f1
1 changed files with 3 additions and 3 deletions
|
@ -3,19 +3,19 @@
|
||||||
|
|
||||||
CSMWorld::RecordBase::~RecordBase() {}
|
CSMWorld::RecordBase::~RecordBase() {}
|
||||||
|
|
||||||
bool CSMWorld::RecordBase::RecordBase::isDeleted() const
|
bool CSMWorld::RecordBase::isDeleted() const
|
||||||
{
|
{
|
||||||
return mState==State_Deleted || mState==State_Erased;
|
return mState==State_Deleted || mState==State_Erased;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool CSMWorld::RecordBase::RecordBase::isErased() const
|
bool CSMWorld::RecordBase::isErased() const
|
||||||
{
|
{
|
||||||
return mState==State_Erased;
|
return mState==State_Erased;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool CSMWorld::RecordBase::RecordBase::isModified() const
|
bool CSMWorld::RecordBase::isModified() const
|
||||||
{
|
{
|
||||||
return mState==State_Modified || mState==State_ModifiedOnly;
|
return mState==State_Modified || mState==State_ModifiedOnly;
|
||||||
}
|
}
|
Loading…
Reference in a new issue