mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Migrate to SFML>=3.0.0
This commit is contained in:
parent
3ea870ef8c
commit
0a83783fae
60 changed files with 205 additions and 9899 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue