mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-23 09:45:51 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -33,7 +33,7 @@ void ByteArrayOutputStream::write(unsigned int b)
|
||||
if( count + 1 >= buf.length )
|
||||
buf.resize( buf.length * 2 );
|
||||
|
||||
buf[count] = (byte) b;
|
||||
buf[count] = (uint8_t) b;
|
||||
count++;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user