From a7803c2e4819fce4f9d049c28ceabc1ab716fcd7 Mon Sep 17 00:00:00 2001 From: Leander Scherer Date: Wed, 11 Mar 2026 23:17:14 +0100 Subject: refactor(fairy): clean up header and remove debug rendering --- src/fairy.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src') diff --git a/src/fairy.c b/src/fairy.c index 6e9c6cc..08af507 100644 --- a/src/fairy.c +++ b/src/fairy.c @@ -3,7 +3,6 @@ #include #include "fairy.h" -#include "globals.h" #define FAIRY_WAND_RADIUS 20 #define FAIRY_STAY_MIN 1 @@ -35,11 +34,6 @@ void DrawFairy(Fairy *fairy) { int x = (int)fairy->position.x; int y = (int)(fairy->position.y + bob); - if (debugMode) { - DrawCircleV(fairy->targetWorld, 1, RED); - DrawCircleV(fairy->position, 1, GREEN); - } - // Outer cross glow DrawRectangle(x, y - 3, 1, 7, (Color){140, 180, 255, 40}); DrawRectangle(x - 3, y, 7, 1, (Color){140, 180, 255, 40}); -- cgit v1.3.1