Skip to content

Commit

Permalink
Fix typo in FTP screen (#61)
Browse files Browse the repository at this point in the history
accesed -> accessed
  • Loading branch information
clpo13 authored Aug 11, 2020
1 parent d253596 commit 80d5cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/menus/menu_ftp.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void Menu_DisplayFTP(void) {
if (strlen(ftp_accepted_connection) != 0)
Draw_Text(((320 - Draw_GetTextWidth(0.42f, ftp_accepted_connection)) / 2), 77, 0.42f, WHITE, ftp_accepted_connection);

Draw_Text(((320 - Draw_GetTextWidth(0.42f, "File browser cannot be accesed at this time.")) / 2), 97, 0.42f, WHITE, "File browser cannot be accesed at this time.");
Draw_Text(((320 - Draw_GetTextWidth(0.42f, "File browser cannot be accessed at this time.")) / 2), 97, 0.42f, WHITE, "File browser cannot be accessed at this time.");

if (strlen(ftp_file_transfer) != 0)
Draw_Text(((320 - Draw_GetTextWidth(0.42f, ftp_file_transfer)) / 2), 147, 0.42f, WHITE, ftp_file_transfer);
Expand Down

0 comments on commit 80d5cea

Please sign in to comment.