From 293e369656fbbd6db882918914a2a83e58343b32 Mon Sep 17 00:00:00 2001 From: Cyd Date: Sun, 12 Jul 2026 15:33:54 -0500 Subject: [PATCH] Restore full-height MFD buttons Playtest: the half-height red buttons did not read well; back to display_height/8 (18..40px). The contiguous amber map columns stay. Co-Authored-By: Claude Fable 5 --- MUNGA_L4/L4MFDVIEW.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MUNGA_L4/L4MFDVIEW.cpp b/MUNGA_L4/L4MFDVIEW.cpp index c29404e..a9c740f 100644 --- a/MUNGA_L4/L4MFDVIEW.cpp +++ b/MUNGA_L4/L4MFDVIEW.cpp @@ -254,9 +254,9 @@ void // 4 buttons above the glass, 4 below; RIO addresses descend // from the anchor, row-major (vRIO CockpitLayout::Mfd). //----------------------------------------------------------- - int strip_h = display_height / 16; - if (strip_h < 9) strip_h = 9; - if (strip_h > 20) strip_h = 20; + int strip_h = display_height / 8; + if (strip_h < 18) strip_h = 18; + if (strip_h > 40) strip_h = 40; int button_w = (display_width - 5 * buttonGap) / 4;