FIX: wrong define

This commit is contained in:
iceman1001 2019-01-29 15:47:44 +01:00
parent c419f7bf37
commit 8991fa172d

View file

@ -80,7 +80,7 @@ void setT55xxConfig(uint8_t arg0, t55xx_config *c) {
printT55xxConfig(); printT55xxConfig();
#if WITH_FLASH #ifdef WITH_FLASH
// shall persist to flashmem // shall persist to flashmem
if (arg0 == 0) { if (arg0 == 0) {
return; return;
@ -119,7 +119,7 @@ t55xx_config* getT55xxConfig(void) {
} }
void loadT55xxConfig(void) { void loadT55xxConfig(void) {
#if WITH_FLASH #ifdef WITH_FLASH
if (!FlashInit()) { if (!FlashInit()) {
return; return;
} }