Skip to content

Commit

Permalink
PNGDEC: Remove PNG RAM debug text.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Sep 6, 2023
1 parent 5a92a9c commit c9fd68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion micropython/modules/pngdec/pngdec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ mp_obj_t _PNG_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, co
self->base.type = &PNG_type;
self->png = m_new_class(PNG);

mp_printf(&mp_plat_print, "PNG RAM %fK\n", sizeof(PNG) / 1024.0f);
//mp_printf(&mp_plat_print, "PNG RAM %fK\n", sizeof(PNG) / 1024.0f);

ModPicoGraphics_obj_t *graphics = (ModPicoGraphics_obj_t *)MP_OBJ_TO_PTR(args[ARG_picographics].u_obj);

Expand Down

0 comments on commit c9fd68e

Please sign in to comment.