diff --git a/data/images/design/choice_large.png b/data/images/design/choice_large.png new file mode 100644 index 0000000..3c015b1 Binary files /dev/null and b/data/images/design/choice_large.png differ diff --git a/source/Prompts/prompt_device.cpp b/source/Prompts/prompt_device.cpp index 38ca8a3..57f0518 100644 --- a/source/Prompts/prompt_device.cpp +++ b/source/Prompts/prompt_device.cpp @@ -31,7 +31,7 @@ int devicePrompt() trigB.SetButtonOnlyTrigger(-1, WPAD_BUTTON_B | WPAD_CLASSIC_BUTTON_B, PAD_BUTTON_B); // Hintergrund - GuiImageData dialogBox(Theme.choice); + GuiImageData dialogBox(Theme.choice_large); GuiImage dialogBoxImg(&dialogBox); // button data diff --git a/source/Tools/theme.cpp b/source/Tools/theme.cpp index 8ca8639..04d228a 100644 --- a/source/Tools/theme.cpp +++ b/source/Tools/theme.cpp @@ -37,6 +37,7 @@ DefaultTheme() Theme.dialog_background = dialog_background_png; Theme.throbber = throbber_png; Theme.choice = choice_png; + Theme.choice_large = choice_large_png; Theme.sd_active = sd_active_png; Theme.sd_inactive = sd_inactive_png; Theme.usb_active = usb_active_png; @@ -185,6 +186,7 @@ void theme(string path) Theme.dialog_background = load_data(Theme.dialog_background , path + "dialog_background.png"); Theme.throbber = load_data(Theme.throbber , path + "throbber.png"); Theme.choice = load_data(Theme.choice , path + "choice.png"); + Theme.choice = load_data(Theme.choice ,path + "choice_large.png"); Theme.sd_active = load_data(Theme.sd_active , path + "sd_active.png"); Theme.sd_inactive = load_data(Theme.sd_inactive , path + "sd_inactive.png"); Theme.usb_active = load_data(Theme.usb_active , path + "usb_active.png"); diff --git a/source/Tools/theme.h b/source/Tools/theme.h index 75e1e0c..11c3919 100644 --- a/source/Tools/theme.h +++ b/source/Tools/theme.h @@ -32,6 +32,7 @@ struct STheme const u8* dialog_background; const u8* throbber; const u8* choice; + const u8* choice_large; const u8* sd_active; const u8* sd_inactive; const u8* usb_active; diff --git a/source/filelist.h b/source/filelist.h index ca4bf12..f20fa6e 100644 --- a/source/filelist.h +++ b/source/filelist.h @@ -170,6 +170,9 @@ extern const u32 throbber_png_size; extern const u8 choice_png[]; extern const u32 choice_png_size; +extern const u8 choice_large_png[]; +extern const u32 choice_large_png_size; + extern const u8 sd_active_png[]; extern const u32 sd_active_png_size;