From 95c26f69cf8606481d5ac0efd0d4896782dcfe09 Mon Sep 17 00:00:00 2001 From: Tropical <42101043+tropicaaal@users.noreply.github.com> Date: Fri, 6 Mar 2026 05:06:27 -0600 Subject: [PATCH] fix: undo some mistakes --- .../boost/asio/detail/impl/pipe_select_interrupter.ipp | 2 +- .../boost/asio/detail/impl/socket_select_interrupter.ipp | 2 +- .../Platform/PS3/PS3Extras/boost_1_53_0/boost/crc.hpp | 6 +++--- .../Platform/PS3/PS3Extras/boost_1_53_0/boost/uuid/sha1.hpp | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/asio/detail/impl/pipe_select_interrupter.ipp b/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/asio/detail/impl/pipe_select_interrupter.ipp index 5545b7d30..7b02236e0 100644 --- a/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/asio/detail/impl/pipe_select_interrupter.ipp +++ b/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/asio/detail/impl/pipe_select_interrupter.ipp @@ -90,7 +90,7 @@ void pipe_select_interrupter::recreate() void pipe_select_interrupter::interrupt() { - char uint8_t = 0; + char byte = 0; signed_size_type result = ::write(write_descriptor_, &byte, 1); (void)result; } diff --git a/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/asio/detail/impl/socket_select_interrupter.ipp b/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/asio/detail/impl/socket_select_interrupter.ipp index 92a3d94dc..6005f12ea 100644 --- a/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/asio/detail/impl/socket_select_interrupter.ipp +++ b/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/asio/detail/impl/socket_select_interrupter.ipp @@ -140,7 +140,7 @@ void socket_select_interrupter::recreate() void socket_select_interrupter::interrupt() { - char uint8_t = 0; + char byte = 0; socket_ops::buf b; socket_ops::init_buf(b, &byte, 1); boost::system::error_code ec; diff --git a/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/crc.hpp b/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/crc.hpp index 61f0a5bd0..5efdfae43 100644 --- a/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/crc.hpp +++ b/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/crc.hpp @@ -172,7 +172,7 @@ public: // External Operations void process_bit( bool bit ); void process_bits( unsigned char bits, std::size_t bit_count ); - void process_byte( unsigned char uint8_t ); + void process_byte( unsigned char byte ); void process_block( void const *bytes_begin, void const *bytes_end ); void process_bytes( void const *buffer, std::size_t byte_count ); @@ -223,14 +223,14 @@ public: void reset( value_type new_rem = InitRem ); // External Operations - void process_byte( unsigned char uint8_t ); + void process_byte( unsigned char byte ); void process_block( void const *bytes_begin, void const *bytes_end ); void process_bytes( void const *buffer, std::size_t byte_count ); value_type checksum() const; // Operators - void operator ()( unsigned char uint8_t ); + void operator ()( unsigned char byte ); value_type operator ()() const; private: diff --git a/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/uuid/sha1.hpp b/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/uuid/sha1.hpp index b0863ce8b..e695e13b2 100644 --- a/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/uuid/sha1.hpp +++ b/Minecraft.Client/Platform/PS3/PS3Extras/boost_1_53_0/boost/uuid/sha1.hpp @@ -88,7 +88,7 @@ inline void sha1::reset() inline void sha1::process_byte(unsigned char byte) { - process_byte_impl(uint8_t); + process_byte_impl(byte); // size_t max value = 0xFFFFFFFF //if (bit_count_low + 8 >= 0x100000000) { // would overflow