From aff1570ef705a28748cb88ffb0bf549ec258c141 Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Mon, 11 Feb 2013 11:34:30 +1100 Subject: [PATCH] Small correction to the table struct --- table.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/table.h b/table.h index 9d04581..997c4ae 100644 --- a/table.h +++ b/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]; };