Skip to content

Commit c497498

Browse files
committed
Fix no telemetry blink for high res LCDs
Seems like BLINK on it's own doesn't work for the high resolution screens. Changed it back to what it used to be. Works in the simulator. Extended yMaxLimit for 320x480.
1 parent f78dba8 commit c497498

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/SCRIPTS/BF/radios.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ local supportedRadios =
3434
resolution = lcdResolution.high,
3535
MenuBox = { x=120, y=100, w=200, x_offset=68, h_line=20, h_offset=6 },
3636
SaveBox = { x=120, y=100, w=180, x_offset=12, h=60, h_offset=12 },
37-
NoTelem = { 192, LCD_H - 28, "No Telemetry", BLINK },
37+
NoTelem = { 192, LCD_H - 28, "No Telemetry", TEXT_COLOR + INVERS + BLINK },
3838
textSize = 0,
3939
yMinLimit = 35,
4040
yMaxLimit = 235,
@@ -45,10 +45,10 @@ local supportedRadios =
4545
resolution = lcdResolution.high,
4646
MenuBox = { x= (LCD_W -200)/2, y=LCD_H/2, w=200, x_offset=68, h_line=20, h_offset=6 },
4747
SaveBox = { x= (LCD_W -200)/2, y=LCD_H/2, w=180, x_offset=12, h=60, h_offset=12 },
48-
NoTelem = { LCD_W/2 - 50, LCD_H - 28, "No Telemetry", BLINK },
48+
NoTelem = { LCD_W/2 - 50, LCD_H - 28, "No Telemetry", TEXT_COLOR + INVERS + BLINK },
4949
textSize = 0,
5050
yMinLimit = 35,
51-
yMaxLimit = 235,
51+
yMaxLimit = 435,
5252
},
5353
}
5454

0 commit comments

Comments
 (0)