mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-29 10:24:46 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -8,7 +8,7 @@ void BlockReplacements::staticCtor()
|
||||
{
|
||||
for (int i = 0; i < 256; i++)
|
||||
{
|
||||
byte b = (byte) i;
|
||||
uint8_t b = (uint8_t) i;
|
||||
if (b != 0 && Tile::tiles[b & 0xff] == NULL)
|
||||
{
|
||||
b = 0;
|
||||
|
||||
Reference in New Issue
Block a user