Skip to content

Commit

Permalink
Add messages at the bottom of some screens
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightkingale committed May 7, 2024
1 parent bc60de4 commit 196ed99
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions source/screen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,16 @@ void draw_unlink_menu() {
draw_background(16, 16, 16, 255);
draw_screen_bars();

draw_text("Unlinking: Please read the following and confirm!", 64, 120, 50);
draw_text("Before unlinking, please read the following notice!", 64, 120, 50);

draw_text("This will unlink your Network ID from this user.", 64, 230, 50);
draw_text("You can reattach this account to any user on this Wii U,", 64, 290, 50);
draw_text("or attach a new account to this user.", 64, 350, 50);

draw_text("However, this unlink will not take place on the server.", 64, 460, 50);
draw_text("You won't be able to use this account on any other Wii U.", 64, 520, 50);

draw_text("You must confirm to continue the process.", 64, 840, 50);

draw_confirm_button();

Expand All @@ -96,7 +98,7 @@ void draw_backup_menu() {
draw_background(16, 16, 16, 255);
draw_screen_bars();

draw_text("Backup: Please read the following and confirm!", 64, 120, 50);
draw_text("Before backing up, please read the following notice!", 64, 120, 50);

draw_text("This will backup your current account.dat file.", 64, 230, 50);
draw_text("The account.dat may contain sensitive personal", 64, 340, 50);
Expand All @@ -105,6 +107,8 @@ void draw_backup_menu() {

draw_text("Please do not share these backups with anyone else!", 64, 570, 50);

draw_text("You must confirm to continue the process.", 64, 840, 50);

draw_confirm_button();

SDL_RenderPresent(renderer);
Expand All @@ -115,13 +119,15 @@ void draw_overwrite_menu(const char* backup_path) {
draw_background(10, 10, 60, 255); // Blue background.
draw_screen_bars();

draw_text("Backup: Please read the following and confirm!", 64, 120, 50);
draw_text("Before backing up, please read the following notice!", 64, 120, 50);

draw_text("The backup file already exists!", 64, 230, 50);
draw_text(backup_path, 64, 290, 50);

draw_text("Would you like to overwrite it?", 64, 400, 50);

draw_text("You must confirm to continue the process.", 64, 840, 50);

draw_confirm_button();

SDL_RenderPresent(renderer);
Expand All @@ -137,6 +143,8 @@ void draw_error_menu(const char* error_message) {
draw_text(error_message, 64, 230, 50);
draw_text("You will return to the main menu.", 64, 290, 50);

draw_text("If you believe this to be a bug, please report it.", 64, 840, 50);

SDL_RenderPresent(renderer);
SDL_Delay(5000);
}
Expand All @@ -163,7 +171,7 @@ void draw_success_menu(const char* type, bool inkay_configured = false) {
draw_text("Your console will restart in 5 seconds...", 64, 290, 50);

if (inkay_configured) {
draw_text("Inkay was also configured automatically!", 64, 400, 50);
draw_text("Please note that Inkay was configured automatically.", 64, 840, 50);
}
}

Expand Down

0 comments on commit 196ed99

Please sign in to comment.