new image colors for prompt window

This commit is contained in:
dborth 2010-04-13 08:00:39 +00:00
parent 199829e44c
commit 9f981bd710
4 changed files with 8 additions and 2 deletions

View File

@ -120,6 +120,12 @@ extern const u32 button_png_size;
extern const u8 button_over_png[];
extern const u32 button_over_png_size;
extern const u8 button_prompt_png[];
extern const u32 button_prompt_png_size;
extern const u8 button_prompt_over_png[];
extern const u32 button_prompt_over_png_size;
extern const u8 button_long_png[];
extern const u32 button_long_png_size;

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -143,8 +143,8 @@ WindowPrompt(const char *title, const char *msg, const char *btn1Label, const ch
promptWindow.SetPosition(0, -10);
GuiSound btnSoundOver(button_over_pcm, button_over_pcm_size, SOUND_PCM);
GuiSound btnSoundClick(button_click_pcm, button_click_pcm_size, SOUND_PCM);
GuiImageData btnOutline(button_png);
GuiImageData btnOutlineOver(button_over_png);
GuiImageData btnOutline(button_prompt_png);
GuiImageData btnOutlineOver(button_prompt_over_png);
GuiImageData dialogBox(dialogue_box_png);
GuiImage dialogBoxImg(&dialogBox);