aboutsummaryrefslogtreecommitdiffstats
path: root/minui
diff options
context:
space:
mode:
authorDoug Zongker <dougz@google.com>2012-08-29 15:57:01 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-08-29 15:57:02 -0700
commitaff4dbb0ae33e55785d1a11f93c1e20ebfed4a90 (patch)
tree13812661982fda40e2261c45ce25e8c68856701c /minui
parentd52ef348d5abb65cd067be334d37c86d621786b9 (diff)
parent8b240ccca1ad32cbd09d3807614f3086914ceaaf (diff)
downloadbootable_recovery-aff4dbb0ae33e55785d1a11f93c1e20ebfed4a90.zip
bootable_recovery-aff4dbb0ae33e55785d1a11f93c1e20ebfed4a90.tar.gz
bootable_recovery-aff4dbb0ae33e55785d1a11f93c1e20ebfed4a90.tar.bz2
Merge "recovery locale handling fixes" into jb-mr1-dev
Diffstat (limited to 'minui')
-rw-r--r--minui/resources.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/minui/resources.c b/minui/resources.c
index 60f3542..ac7bdac 100644
--- a/minui/resources.c
+++ b/minui/resources.c
@@ -249,18 +249,13 @@ int res_create_localized_surface(const char* name, gr_surface* pSurface) {
size_t height = info_ptr->height;
size_t stride = 4 * width;
- printf("image size is %d x %d\n", width, height);
-
int color_type = info_ptr->color_type;
int bit_depth = info_ptr->bit_depth;
int channels = info_ptr->channels;
- printf("color_type %d bit_depth %d channels %d\n",
- color_type, bit_depth, channels);
if (!(bit_depth == 8 &&
(channels == 1 && color_type == PNG_COLOR_TYPE_GRAY))) {
return -7;
- printf("exiting -7\n");
goto exit;
}
@@ -276,8 +271,6 @@ int res_create_localized_surface(const char* name, gr_surface* pSurface) {
printf("row %d: %s %d x %d\n", y, loc, w, h);
if (y+1+h >= height || matches_locale(loc)) {
- printf(" taking this one\n");
-
surface = malloc(sizeof(GGLSurface));
if (surface == NULL) {
result = -8;
@@ -301,7 +294,6 @@ int res_create_localized_surface(const char* name, gr_surface* pSurface) {
*pSurface = (gr_surface) surface;
break;
} else {
- printf(" skipping\n");
int i;
for (i = 0; i < h; ++i, ++y) {
png_read_row(png_ptr, row, NULL);