From 9644fdc04d58bcbc327f0340ae3895052b17af5f Mon Sep 17 00:00:00 2001 From: Zack Buhman Date: Fri, 4 Jul 2025 21:37:31 -0500 Subject: [PATCH] new cursor --- src/graphics.cpp | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/graphics.cpp b/src/graphics.cpp index aa7399b..882932d 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -209,11 +209,18 @@ void graphics_cursor(ta_multiwriter& multi) continue; quad_type_0(multi.op, - {c.x - 1, c.y - 1, 10}, - {c.x + 1, c.y - 1, 10}, - {c.x + 1, c.y + 1, 10}, - {c.x - 1, c.y + 1, 10}, + {c.x - 0, c.y - 0, 11}, + {c.x + 6, c.y + 8, 11}, + {c.x + 0, c.y + 10, 11}, + {c.x - 0, c.y - 0, 11}, 0xffffff); + + quad_type_0(multi.op, + {c.x - 1, c.y - 3, 10}, + {c.x + 7.5f, c.y + 8.5f, 10}, + {c.x - 1, c.y + 11.5f, 10}, + {c.x - 1, c.y - 3, 10}, + 0x000000); } }