mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 08:25:18 +01:00
new image colors for prompt window
This commit is contained in:
parent
14f56056b8
commit
5169aa4d90
@ -123,6 +123,12 @@ extern const u32 button_png_size;
|
|||||||
extern const u8 button_over_png[];
|
extern const u8 button_over_png[];
|
||||||
extern const u32 button_over_png_size;
|
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 u8 button_long_png[];
|
||||||
extern const u32 button_long_png_size;
|
extern const u32 button_long_png_size;
|
||||||
|
|
||||||
|
BIN
source/images/button_prompt.png
Normal file
BIN
source/images/button_prompt.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
BIN
source/images/button_prompt_over.png
Normal file
BIN
source/images/button_prompt_over.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
@ -136,8 +136,8 @@ WindowPrompt(const char *title, const char *msg, const char *btn1Label, const ch
|
|||||||
promptWindow.SetPosition(0, -10);
|
promptWindow.SetPosition(0, -10);
|
||||||
GuiSound btnSoundOver(button_over_pcm, button_over_pcm_size, SOUND_PCM);
|
GuiSound btnSoundOver(button_over_pcm, button_over_pcm_size, SOUND_PCM);
|
||||||
GuiSound btnSoundClick(button_click_pcm, button_click_pcm_size, SOUND_PCM);
|
GuiSound btnSoundClick(button_click_pcm, button_click_pcm_size, SOUND_PCM);
|
||||||
GuiImageData btnOutline(button_png);
|
GuiImageData btnOutline(button_prompt_png);
|
||||||
GuiImageData btnOutlineOver(button_over_png);
|
GuiImageData btnOutlineOver(button_prompt_over_png);
|
||||||
|
|
||||||
GuiImageData dialogBox(dialogue_box_png);
|
GuiImageData dialogBox(dialogue_box_png);
|
||||||
GuiImage dialogBoxImg(&dialogBox);
|
GuiImage dialogBoxImg(&dialogBox);
|
||||||
|
Loading…
Reference in New Issue
Block a user