Skip to content

Commit

Permalink
Fix:plugin/j1850: Replace graphic_fg_white with graphic_fg.
Browse files Browse the repository at this point in the history
Looks like this was missed in:
46f67d8

Fixes:
j1850.c:319:46: error: ‘struct osd_item’ has no member named ‘graphic_fg_white’

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
  • Loading branch information
jameshilliard authored and jkoan committed Nov 4, 2020
1 parent 12478f5 commit 3ab88d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion navit/plugin/j1850/j1850.c
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ static void osd_j1850_init(struct j1850 *this, struct navit *nav) {
graphics_gc_set_linewidth(this->white, this->width);


graphics_gc_set_linewidth(this->osd_item.graphic_fg_white, this->width);
graphics_gc_set_linewidth(this->osd_item.graphic_fg, this->width);

event_add_timeout(500, 1, callback_new_1(callback_cast(osd_j1850_draw), this));

Expand Down

0 comments on commit 3ab88d4

Please sign in to comment.