X-Git-Url: https://git.rohieb.name/hackover2013-badge-firmware.git/blobdiff_plain/43b7092bd42d639a527b32dae4af87e37528ef57..45de93d504a066644b2d82711479c7ca37244695:/project/commands/drawing/cmd_rectangle.c?ds=inline 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); } }