diff options
author | Joel Bodenmann <joel@embedded.pro> | 2016-06-26 11:24:39 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@embedded.pro> | 2016-06-26 11:24:39 +0200 |
commit | 0fd9bf268960457c98ce6bbd04d13bcd34f8b0a7 (patch) | |
tree | aa9c8485536f5263323b7bf69f039b6c7c53eb68 /demos/applications/combo/main.c | |
parent | 4646a36cffa639375c7f6f650665d92aba53a45c (diff) | |
download | uGFX-0fd9bf268960457c98ce6bbd04d13bcd34f8b0a7.tar.gz uGFX-0fd9bf268960457c98ce6bbd04d13bcd34f8b0a7.tar.bz2 uGFX-0fd9bf268960457c98ce6bbd04d13bcd34f8b0a7.zip |
Updating logo(s) in applications/combo demo
Diffstat (limited to 'demos/applications/combo/main.c')
-rw-r--r-- | demos/applications/combo/main.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/demos/applications/combo/main.c b/demos/applications/combo/main.c index fba3d851..449572d9 100644 --- a/demos/applications/combo/main.c +++ b/demos/applications/combo/main.c @@ -84,7 +84,7 @@ static GHandle ghLabelSlider1, ghLabelSlider2, ghLabelSlider3, ghLabelSlider4, static GHandle ghRadio1, ghRadio2; static GHandle ghRadioBlack, ghRadioWhite, ghRadioYellow; static GHandle ghList1, ghList2, ghList3, ghList4; -static GHandle ghImage1, ghImage2; +static GHandle ghImage1; static GHandle ghProgressbar1; static gdispImage imgYesNo; @@ -328,10 +328,7 @@ static void createWidgets(void) { wi.g.parent = ghPgImages; wi.g.x = wi.g.y = 0; wi.g.width = pagewidth; wi.g.height = gwinGetInnerHeight(ghPgImages)/2; ghImage1 = gwinImageCreate(0, &wi.g); - gwinImageOpenFile(ghImage1, "ugfx.gif"); - wi.g.y += wi.g.height; - ghImage2 = gwinImageCreate(0, &wi.g); - gwinImageOpenFile(ghImage2, "chibios.gif"); + gwinImageOpenFile(ghImage1, "ugfx.bmp"); } /** |