From 7ecace4284edc98d48e12348372c2c2af4342ad8 Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Mon, 3 Feb 2025 09:03:37 -0700 Subject: Scripting working very well --- test/scanTest1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/scanTest1.c b/test/scanTest1.c index e14a620..06057f2 100644 --- a/test/scanTest1.c +++ b/test/scanTest1.c @@ -10,6 +10,6 @@ typedef struct Color { Color lineScanner(uint16_t x, uint16_t y, uint32_t frameNumber) { - return (Color){.r = 0, .g = 0, .b = 255, .a = 255}; + return (Color){.r = random() % 255, .g = random() % 255, .b = random() % 255, .a = 255}; } -- cgit v1.2.3