From 8434610767975bb95fa4103c5d10b05cae3ecc82 Mon Sep 17 00:00:00 2001 From: hozlucas28 Date: Wed, 11 Sep 2024 23:55:00 -0300 Subject: [PATCH] fix(todos): improve `drawPattern` and `drawPatternInDashboard` todos --- libs/utilities.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/utilities.c b/libs/utilities.c index 9fec5c5..3463746 100644 --- a/libs/utilities.c +++ b/libs/utilities.c @@ -7,13 +7,13 @@ // TODO void drawPattern(TGame* pGame, char* pattern) { - printf("%s pattern was drawn!", pattern); + // drawPatternInDashboard(); + printf("\n* The '%s' pattern was injected! *", pattern); + printf("\n* The '%s' pattern was drawn! *", pattern); } // TODO -void drawPatternInDashboard(TGame* pGame, TPattern* pattern) { - printf("%s pattern was injected!", pattern); -} +void drawPatternInDashboard(TGame* pGame, TPattern* pattern) {} void fillDashboard(TGame* pGame, int with) { int i;