From 2c81942ae9982196bfb14f399d406073967f066f Mon Sep 17 00:00:00 2001 From: Nagy Attila Gabor Date: Sat, 25 Jun 2016 14:34:47 +0200 Subject: [PATCH] Fixed mapversion overwrite error PoiCount is 16 bit in the map file, we did overwrite the last byte of mapversion --- tiveda.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiveda.ino b/tiveda.ino index 7e99caa..ae5e751 100644 --- a/tiveda.ino +++ b/tiveda.ino @@ -46,7 +46,7 @@ POI* pois; uint32_t mapVersion; // Number of the pois -uint8_t poiCount; +uint16_t poiCount; // Set to true when we're in an alert boolean inAlert = false;