From 49e4665ab1974e02ae1c02a21a71cb29e66e68d4 Mon Sep 17 00:00:00 2001 From: neon443 <69979447+neon443@users.noreply.github.com> Date: Mon, 11 Aug 2025 07:09:23 -0400 Subject: [PATCH] kinda stupid - getting the color of the crosshair that is alwasy the same colour lol --- source/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.c b/source/main.c index 5e982ff..901122b 100644 --- a/source/main.c +++ b/source/main.c @@ -33,7 +33,7 @@ void writePicToFBuff(void *fb, void *img, u16 x, u16 y) { uint8_t g = ((data >> 5) & 0x3F) << 2; uint8_t r = (data & 0x1F) << 3; - if(((j>110 && j<130) && (i>198 && i<202)) || ((i>190 && i<210) && (j>118 && j<122))) { + if(((j>110 && j<130) && (i>198 && i<202)) || ((i>190 && i<210) && (j>118 && j<122)) && !(j == 120 && i == 200)) { fb_8[v] = 200; fb_8[v+1] = 200; fb_8[v+2] = 200;