summaryrefslogtreecommitdiffstats
path: root/minui
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2014-11-07 20:32:55 +0100
committerEthan Yonker <dees_troy@teamw.in>2014-11-07 20:33:07 +0100
commit5a95c3ff415dd3b00b68aa2e7f662f9852f49c18 (patch)
treeb9305cc274e0a1550b4db02e0f2133fdefa3fffe /minui
parentAdd new needed libs for 5.0 recovery (diff)
downloadandroid_bootable_recovery-5a95c3ff415dd3b00b68aa2e7f662f9852f49c18.tar
android_bootable_recovery-5a95c3ff415dd3b00b68aa2e7f662f9852f49c18.tar.gz
android_bootable_recovery-5a95c3ff415dd3b00b68aa2e7f662f9852f49c18.tar.bz2
android_bootable_recovery-5a95c3ff415dd3b00b68aa2e7f662f9852f49c18.tar.lz
android_bootable_recovery-5a95c3ff415dd3b00b68aa2e7f662f9852f49c18.tar.xz
android_bootable_recovery-5a95c3ff415dd3b00b68aa2e7f662f9852f49c18.tar.zst
android_bootable_recovery-5a95c3ff415dd3b00b68aa2e7f662f9852f49c18.zip
Diffstat (limited to 'minui')
-rw-r--r--minui/resources.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/minui/resources.c b/minui/resources.c
index 605edbca7..fe1e99926 100644
--- a/minui/resources.c
+++ b/minui/resources.c
@@ -100,10 +100,10 @@ int res_create_surface(const char* name, gr_surface* pSurface) {
int color_type, bit_depth;
size_t width, height;
- png_get_IHDR(png_ptr, info_ptr, width, height, &bit_depth,
+ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth,
&color_type, NULL, NULL, NULL);
- png_byte* channels = png_get_channels(png_ptr, info_ptr);
+ png_byte channels = png_get_channels(png_ptr, info_ptr);
if (!(bit_depth == 8 &&
((channels == 3 && color_type == PNG_COLOR_TYPE_RGB) ||