forked from teamnwah/openmw-tes3coop
[Client] Fix GCC build
Based on 71040659ac39dc1236af654b5c3177d015e749e5
This commit is contained in:
parent
715012f087
commit
7f00005f04
3 changed files with 3 additions and 3 deletions
|
@ -323,7 +323,7 @@ namespace MWBase
|
|||
|
||||
Make it possible to set the physics framerate from elsewhere
|
||||
*/
|
||||
virtual void World::setPhysicsFramerate(float physFramerate) = 0;
|
||||
virtual void setPhysicsFramerate(float physFramerate) = 0;
|
||||
/*
|
||||
End of tes3mp addition
|
||||
*/
|
||||
|
|
|
@ -1114,7 +1114,7 @@ void LocalPlayer::setEquipment()
|
|||
else
|
||||
{
|
||||
// Don't try to equip an item that is already equipped
|
||||
if (!ptrInventory.getSlot(slot).isEqual(it))
|
||||
if (ptrInventory.getSlot(slot) != it)
|
||||
ptrInventory.equip(slot, it, ptrPlayer);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -422,7 +422,7 @@ namespace MWWorld
|
|||
|
||||
Make it possible to set the physics framerate from elsewhere
|
||||
*/
|
||||
void World::setPhysicsFramerate(float physFramerate);
|
||||
void setPhysicsFramerate(float physFramerate);
|
||||
/*
|
||||
End of tes3mp addition
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue