1
0
Fork 0

Bug Fix #1999 missing "break"-s.

KLN89 case statements failing through.
Confirmed break is necessary to avoid text overlap.
Resolved.
This commit is contained in:
Scott Giese 2018-09-28 00:24:58 -05:00
parent e093ac19bc
commit 994b752a27

View file

@ -227,6 +227,7 @@ void KLN89AptPage::Update(double dt) {
case 12:
// Lakebed
_kln89->DrawText("CLY", 2, 9, 2);
break;
default:
// erm? ...
_kln89->DrawText("MAT", 2, 9, 2);
@ -276,6 +277,7 @@ void KLN89AptPage::Update(double dt) {
case 12:
// Lakebed
_kln89->DrawText("CLY", 2, 9, 0);
break;
default:
// erm? ...
_kln89->DrawText("MAT", 2, 9, 0);