Small correction to the table struct

This commit is contained in:
Josh Stewart 2013-02-11 11:34:30 +11:00
parent 4f7d86588e
commit aff1570ef7
1 changed files with 2 additions and 4 deletions

View File

@ -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];
};