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:
parent
e093ac19bc
commit
994b752a27
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue