mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-29 16:11:37 -04:00
[Client] Fix GCC build
Based on 71040659ac39dc1236af654b5c3177d015e749e5
This commit is contained in:
parent
715012f087
commit
7f00005f04
@ -323,7 +323,7 @@ namespace MWBase
|
|||||||
|
|
||||||
Make it possible to set the physics framerate from elsewhere
|
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
|
End of tes3mp addition
|
||||||
*/
|
*/
|
||||||
|
@ -1114,7 +1114,7 @@ void LocalPlayer::setEquipment()
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Don't try to equip an item that is already equipped
|
// 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);
|
ptrInventory.equip(slot, it, ptrPlayer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -422,7 +422,7 @@ namespace MWWorld
|
|||||||
|
|
||||||
Make it possible to set the physics framerate from elsewhere
|
Make it possible to set the physics framerate from elsewhere
|
||||||
*/
|
*/
|
||||||
void World::setPhysicsFramerate(float physFramerate);
|
void setPhysicsFramerate(float physFramerate);
|
||||||
/*
|
/*
|
||||||
End of tes3mp addition
|
End of tes3mp addition
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user