Fix too small array

This commit is contained in:
Riku Isokoski 2021-09-20 15:27:32 +03:00 committed by JF
parent 9ffd28f735
commit 494448b7cc

View File

@ -22,7 +22,7 @@ namespace Pinetime {
const std::array<std::string, 3> options = {" Digital face", " Analog face", " PineTimeStyle"};
Controllers::Settings& settingsController;
lv_obj_t* cbOption[2];
lv_obj_t* cbOption[3];
};
}
}