Skip to content

Commit

Permalink
fix iNav AHI issues - left a silly experiment in
Browse files Browse the repository at this point in the history
  • Loading branch information
bri3d committed Aug 22, 2022
1 parent d53a3a3 commit 73d46b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jni/osd_dji_overlay_udp.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ static void draw_character_map(display_info_t *display_info, void* restrict fb_a
for(int y = 0; y < display_info->char_height; y++) {
for(int x = 0; x < display_info->char_width; x++) {
uint16_t c = character_map[x][y];
if (c != 0 && c != 20) {
if (c != 0) {
font = display_info->font_page_1;
if (c > 255) {
c = c & 0xFF;
Expand Down

0 comments on commit 73d46b1

Please sign in to comment.