X-Git-Url: http://git.rohieb.name/hackover2013-badge-firmware.git/blobdiff_plain/43b7092bd42d639a527b32dae4af87e37528ef57..84536a5e58b1ca89831e1056a70bba6d8b800a2f:/project/commands/drawing/cmd_rectangle.c?ds=sidebyside diff --git a/project/commands/drawing/cmd_rectangle.c b/project/commands/drawing/cmd_rectangle.c index 2750d1d..05f039d 100644 --- a/project/commands/drawing/cmd_rectangle.c +++ b/project/commands/drawing/cmd_rectangle.c @@ -43,8 +43,8 @@ #include "project/commands.h" // Generic helper functions #ifdef CFG_TFTLCD - #include "drivers/lcd/tft/lcd.h" - #include "drivers/lcd/tft/drawing.h" + #include "drivers/displays/tft/lcd.h" + #include "drivers/displays/tft/drawing.h" /**************************************************************************/ /*! @@ -125,7 +125,7 @@ void cmd_rectangleround(uint8_t argc, char **argv) } else { - drawRectangleRounded(x1, y1, x2, y2, (uint16_t)c, radius, corners); + drawRoundedRectangleFilled(x1, y1, x2, y2, (uint16_t)c, radius, corners); } }