aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Zongker <>2009-04-01 14:39:15 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-04-01 14:39:15 -0700
commit49283858fb6565a5da0c5987e614f60254e61804 (patch)
tree36661a63319014a2b364535b25f17859212b3b7a
parent1066d2c31990e3c2eacedbe0a70013da774fcf3e (diff)
downloadbootable_recovery-49283858fb6565a5da0c5987e614f60254e61804.zip
bootable_recovery-49283858fb6565a5da0c5987e614f60254e61804.tar.gz
bootable_recovery-49283858fb6565a5da0c5987e614f60254e61804.tar.bz2
AI 144082: Remove the unused "unpacking" recovery icon.
Automated import of CL 144082
-rw-r--r--common.h1
-rw-r--r--res/images/icon_unpacking.pngbin7180 -> 0 bytes
-rw-r--r--ui.c1
3 files changed, 0 insertions, 2 deletions
diff --git a/common.h b/common.h
index e17f76a..98ce868 100644
--- a/common.h
+++ b/common.h
@@ -47,7 +47,6 @@ void ui_end_menu();
// Set the icon (normally the only thing visible besides the progress bar).
enum {
BACKGROUND_ICON_NONE,
- BACKGROUND_ICON_UNPACKING,
BACKGROUND_ICON_INSTALLING,
BACKGROUND_ICON_ERROR,
BACKGROUND_ICON_FIRMWARE_INSTALLING,
diff --git a/res/images/icon_unpacking.png b/res/images/icon_unpacking.png
deleted file mode 100644
index 9198e2e..0000000
--- a/res/images/icon_unpacking.png
+++ /dev/null
Binary files differ
diff --git a/ui.c b/ui.c
index 5d06561..b84f172 100644
--- a/ui.c
+++ b/ui.c
@@ -46,7 +46,6 @@ static gr_surface gProgressBarEmpty[NUM_SIDES];
static gr_surface gProgressBarFill[NUM_SIDES];
static const struct { gr_surface* surface; const char *name; } BITMAPS[] = {
- { &gBackgroundIcon[BACKGROUND_ICON_UNPACKING], "icon_unpacking" },
{ &gBackgroundIcon[BACKGROUND_ICON_INSTALLING], "icon_installing" },
{ &gBackgroundIcon[BACKGROUND_ICON_ERROR], "icon_error" },
{ &gBackgroundIcon[BACKGROUND_ICON_FIRMWARE_INSTALLING],