Skip to content

Commit

Permalink
Moved main menu a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
ClusterM committed May 14, 2023
1 parent 2eaf2a3 commit c65b6f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions FdsKey/Core/Src/mainmenu.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ void main_menu_draw(uint8_t selection)
oled_draw_rectangle(0, line, OLED_WIDTH - 1, line + OLED_HEIGHT - 1, 1, 0);
// draw text
oled_draw_text(&MAIN_MENU_FONT, "Browse disk images",
10, line + 1,
8, line + 1,
0, 0);
oled_draw_text(&MAIN_MENU_FONT, "Create a blank disk",
10, line + 11,
8, line + 11,
0, 0);
oled_draw_text(&MAIN_MENU_FONT, "Settings",
10, line + 21,
8, line + 21,
0, 0);
// draw cursor
oled_draw_image(&IMAGE_LARGE_CURSOR, 3, line + 2 + 10 * selection, 0, 0);
oled_draw_image(&IMAGE_LARGE_CURSOR, 1, line + 2 + 10 * selection, 0, 0);

// version number
#ifndef INTERIM
Expand Down

0 comments on commit c65b6f5

Please sign in to comment.