mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-02 20:04:47 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -79,7 +79,7 @@ void BufferedOutputStream::write(byteArray b)
|
||||
//b - the byte to be written.
|
||||
void BufferedOutputStream::write(unsigned int b)
|
||||
{
|
||||
buf[count++] = (byte) b;
|
||||
buf[count++] = (uint8_t) b;
|
||||
if( count == buf.length )
|
||||
{
|
||||
flush();
|
||||
|
||||
Reference in New Issue
Block a user