X-Git-Url: https://git.rohieb.name/hackover2013-badge-firmware.git/blobdiff_plain/8bd313f4217e71174e1f7351a2262a369279229b..3a4d8a99f885909119362e3b9b9b587315d74ad7:/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) {