Skip to content

Commit

Permalink
samples: mesh_badge: fix font size
Browse files Browse the repository at this point in the history
The order of the fonts in ROM has changed.
Since the sorting is not wrong, correct the
order in the application.

Signed-off-by: Johann Fischer <[email protected]>
  • Loading branch information
jfischer-no authored and carlescufi committed Aug 20, 2019
1 parent 0746017 commit bd72ea1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/boards/reel_board/mesh_badge/src/reel_board.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
#include "board.h"

enum font_size {
FONT_BIG = 0,
FONT_SMALL = 0,
FONT_MEDIUM = 1,
FONT_SMALL = 2,
FONT_BIG = 2,
};

enum screen_ids {
Expand Down

0 comments on commit bd72ea1

Please sign in to comment.