choice_large icon

This commit is contained in:
Christopher Roy Bratusek 2012-03-17 08:19:55 +01:00
parent e1a695a57b
commit f7de221dc8
5 changed files with 7 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -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

View File

@ -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");

View File

@ -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;

View File

@ -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;