Skip to content

Commit

Permalink
Hotfix fix for API_LEVEL_14 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fbeutin-ledger committed Dec 1, 2023
1 parent fe25c8d commit cc0f963
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src_nbgl/ui_sign_712.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static bool display_review_page(uint8_t page, nbgl_pageContent_t *content) {
strings.tmp.tmp,
SCREEN_WIDTH - (2 * BORDER_MARGIN),
NB_MAX_LINES_IN_REVIEW,
#if API_LEVEL >= 14
#if (API_LEVEL == 0 || API_LEVEL >= 14)
&len,
false);
#else
Expand Down
2 changes: 1 addition & 1 deletion src_nbgl/ui_sign_message.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static bool display_message(nbgl_pageContent_t *content) {
(char *) g_stax_shared_buffer,
SCREEN_WIDTH - (2 * BORDER_MARGIN),
NB_MAX_LINES_IN_REVIEW,
#if API_LEVEL >= 14
#if (API_LEVEL == 0 || API_LEVEL >= 14)
&len,
false);
#else
Expand Down

0 comments on commit cc0f963

Please sign in to comment.