mirror of https://github.com/zeldaret/botw.git
ksys/phys: Rename RigidBody flag 8 (IsAddedToWorld)
Forgot to do this in a previous commit.
This commit is contained in:
parent
cfb1f1e074
commit
0b636cdd02
|
@ -237,7 +237,7 @@ bool RigidBody::isActive() const {
|
|||
}
|
||||
|
||||
bool RigidBody::isAddedToWorld() const {
|
||||
return mFlags.isOn(Flag::_8);
|
||||
return mFlags.isOn(Flag::IsAddedToWorld);
|
||||
}
|
||||
|
||||
bool RigidBody::isAddingBodyToWorld() const {
|
||||
|
|
|
@ -68,7 +68,7 @@ public:
|
|||
IsSensor = 1 << 0,
|
||||
UpdateRequested = 1 << 1,
|
||||
_4 = 1 << 2,
|
||||
_8 = 1 << 3,
|
||||
IsAddedToWorld = 1 << 3,
|
||||
_10 = 1 << 4,
|
||||
_20 = 1 << 5,
|
||||
_40 = 1 << 6,
|
||||
|
|
Loading…
Reference in New Issue