X-Git-Url: https://git.rohieb.name/hackover2013-badge-firmware.git/blobdiff_plain/a7be12a4e68fcaaa92f81a394bc316a592ec6270..11d3519339b45996592aa5b43669c9cd8cc495b1:/project/commands/drawing/cmd_bmp.c diff --git a/project/commands/drawing/cmd_bmp.c b/project/commands/drawing/cmd_bmp.c index 4cb88d7..291b665 100644 --- a/project/commands/drawing/cmd_bmp.c +++ b/project/commands/drawing/cmd_bmp.c @@ -45,6 +45,7 @@ #if defined CFG_TFTLCD && defined CFG_SDCARD #include "drivers/displays/tft/lcd.h" #include "drivers/displays/tft/drawing.h" + #include "drivers/displays/tft/bmp.h" /**************************************************************************/ /*! @@ -63,7 +64,7 @@ void cmd_bmp(uint8_t argc, char **argv) // Render image bmp_error_t error; - error = drawBitmapImage(x, y, filename); + error = bmpDrawBitmap(x, y, filename); switch (error) {