Fix table size array to account for swapped tables

This commit is contained in:
Josh Stewart 2019-02-13 10:00:25 +11:00
parent 9ca230df0a
commit f2c1d6c615
1 changed files with 2 additions and 1 deletions

View File

@ -221,7 +221,8 @@ const char TSfirmwareVersion[] PROGMEM = "Speeduino";
const byte data_structure_version = 2; //This identifies the data structure when reading / writing.
//const byte page_size = 64;
const int16_t npage_size[11] PROGMEM = {0,288,128,288,128,288,128,240,192,192,192};
//const int16_t npage_size[11] PROGMEM = {0,288,128,288,128,288,128,240,192,192,192};
const int16_t npage_size[11] PROGMEM = {0,128,288,288,128,288,128,240,192,192,192};
//const byte page11_size = 128;
#define MAP_PAGE_SIZE 288