@@ -549,11 +549,11 @@ void ClockWork::setMinute(uint8_t min, uint8_t &offsetHour, bool &fullHour) {
549549 usedUhrType->show (FrontWord::nach);
550550 break ;
551551 case 20 :
552- if (hasTwentyAndCheckForUsage () && G. UhrtypeDef == Fr10x11 ) {
552+ if (hasTwentyAndCheckForUsage ()) {
553553 usedUhrType->show (FrontWord::min_20);
554- } else if (hasTwentyAndCheckForUsage () && G.UhrtypeDef != Fr10x11) {
555- usedUhrType->show (FrontWord::min_20 );
556- usedUhrType-> show (FrontWord::nach);
554+ if (G.UhrtypeDef != Fr10x11) {
555+ usedUhrType->show (FrontWord::nach );
556+ }
557557 } else {
558558 usedUhrType->show (FrontWord::min_10);
559559 usedUhrType->show (FrontWord::vor);
@@ -566,11 +566,11 @@ void ClockWork::setMinute(uint8_t min, uint8_t &offsetHour, bool &fullHour) {
566566 case 23 :
567567 case 24 :
568568 case 25 :
569- if (usedUhrType->hasTwentyfive ()&& G. UhrtypeDef == Fr10x11 ) {
569+ if (usedUhrType->hasTwentyfive ()) {
570570 usedUhrType->show (FrontWord::min_25);
571- } else if (usedUhrType-> hasTwentyfive () && G.UhrtypeDef != Fr10x11) {
572- usedUhrType->show (FrontWord::min_25 );
573- usedUhrType-> show (FrontWord::nach);
571+ if (G.UhrtypeDef != Fr10x11) {
572+ usedUhrType->show (FrontWord::nach );
573+ }
574574 } else {
575575 usedUhrType->show (FrontWord::min_5);
576576 usedUhrType->show (FrontWord::vor);
0 commit comments