Skip to content

Commit bd72ea1

Browse files
jfischer-nocarlescufi
authored andcommitted
samples: mesh_badge: fix font size
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]>
1 parent 0746017 commit bd72ea1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/boards/reel_board/mesh_badge/src/reel_board.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
#include "board.h"
2424

2525
enum font_size {
26-
FONT_BIG = 0,
26+
FONT_SMALL = 0,
2727
FONT_MEDIUM = 1,
28-
FONT_SMALL = 2,
28+
FONT_BIG = 2,
2929
};
3030

3131
enum screen_ids {

0 commit comments

Comments
 (0)