X-Git-Url: https://git.ao2.it/libam7xxx.git/blobdiff_plain/6ca14bb145fb775271ec7afddd4b4f8429331722..a90e2ac0541712553638996d2247046fe5b35001:/examples/picoproj.c diff --git a/examples/picoproj.c b/examples/picoproj.c index 105169c..2c1b257 100644 --- a/examples/picoproj.c +++ b/examples/picoproj.c @@ -209,6 +209,10 @@ int main(int argc, char *argv[]) goto cleanup; } + if ((unsigned int)width > device_info.native_width || + (unsigned int)height > device_info.native_height) + fprintf(stderr, "WARNING: image not fitting the native resolution, it may be displayed wrongly!\n"); + ret = am7xxx_send_image(dev, format, width, height, image, size); if (ret < 0) { perror("am7xxx_send_image");