Small correction to the table struct
This commit is contained in:
parent
4f7d86588e
commit
aff1570ef7
6
table.h
6
table.h
|
@ -9,10 +9,8 @@ struct table {
|
|||
const static int ySize = 8;
|
||||
|
||||
int values[ySize][xSize];
|
||||
//int axisX[xSize];
|
||||
int axisX[8];
|
||||
int axisY[8];
|
||||
//static boolean useInterp = false; //Whether or not interpolation should be used (Assuming we have enough CPU for it)
|
||||
int axisX[xSize];
|
||||
int axisY[ySize];
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue