fix: remove byte type alias

This commit is contained in:
Tropical
2026-03-06 05:03:37 -06:00
parent 09eae49d21
commit 15af35eef2
208 changed files with 700 additions and 701 deletions

View File

@@ -23,7 +23,7 @@ private:
// the index for the y axis.
// Using this method, the secondary axis will always be horizontal (x or z),
// and the tertiary always vertical (y), if possible.
static byte axisConversionArray[];
static uint8_t axisConversionArray[];
// Set up the pseudorandom number generator
Random *rnd;
@@ -49,7 +49,7 @@ private:
int **foliageCoords;
int foliageCoordsLength;
void prepare();
void crossection(int x, int y, int z, float radius, byte direction, int material);
void crossection(int x, int y, int z, float radius, uint8_t direction, int material);
float treeShape(int y);
float foliageShape(int y);
void foliageCluster(int x, int y, int z);