mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-11 15:48:37 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -74,7 +74,7 @@ FileOutputStream::~FileOutputStream()
|
||||
//b - the byte to be written.
|
||||
void FileOutputStream::write(unsigned int b)
|
||||
{
|
||||
byte value = (byte) b;
|
||||
uint8_t value = (uint8_t) b;
|
||||
|
||||
#if defined(_WIN32)
|
||||
BOOL result = WriteFile(
|
||||
|
||||
Reference in New Issue
Block a user