Merge pull request #13276 from JoshuaVandaele/sfml-3.0.0

Migrate to SFML 3.0.0
This commit is contained in:
JMC47
2025-03-10 15:03:36 -04:00
committed by GitHub
60 changed files with 205 additions and 9899 deletions

View File

@ -23,7 +23,7 @@ sf::Packet& operator>>(sf::Packet& packet, Common::BigEndianValue<u32>& data)
sf::Packet& operator>>(sf::Packet& packet, Common::BigEndianValue<u64>& data)
{
sf::Uint64 tmp;
u64 tmp;
packet >> tmp;
data = tmp;
return packet;
@ -35,7 +35,7 @@ namespace Common
// so we have this for cleaner code.
u64 PacketReadU64(sf::Packet& packet)
{
sf::Uint64 value;
u64 value;
packet >> value;
return value;
}