From 994b752a27c4dd17a189bfa059297bf5444cf31a Mon Sep 17 00:00:00 2001 From: Scott Giese Date: Fri, 28 Sep 2018 00:24:58 -0500 Subject: [PATCH] Bug Fix #1999 missing "break"-s. KLN89 case statements failing through. Confirmed break is necessary to avoid text overlap. Resolved. --- src/Instrumentation/KLN89/kln89_page_apt.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Instrumentation/KLN89/kln89_page_apt.cxx b/src/Instrumentation/KLN89/kln89_page_apt.cxx index 52a0778c3..b64f79d6a 100644 --- a/src/Instrumentation/KLN89/kln89_page_apt.cxx +++ b/src/Instrumentation/KLN89/kln89_page_apt.cxx @@ -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);