PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)
Diff: POKITTO_CORE/PokittoCore.cpp
- Revision:
- 50:ca94812a17b6
- Parent:
- 49:74201663ba8b
--- a/POKITTO_CORE/PokittoCore.cpp Mon May 21 18:43:08 2018 +0000 +++ b/POKITTO_CORE/PokittoCore.cpp Wed Jun 27 13:14:54 2018 +0000 @@ -381,7 +381,7 @@ //read countdown time from settings countd = eeprom_read_byte((uint16_t*)EESETTINGS_LOADERWAIT); #endif - if (countd==0 || countd > 5) countd=3; + if (countd<=0 || countd > 5) countd=3; uint16_t c2 = getTime(); while (countd) { buttons.pollButtons();