aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornathansmith117 <nathansmith117@sdf.org>2025-02-03 16:03:37 +0000
committernathansmith117 <nathansmith117@sdf.org>2025-02-03 16:03:37 +0000
commit7ecace4284edc98d48e12348372c2c2af4342ad8 (patch)
tree21d2b51e676047d218e6a73d0ff813dfa25b2927 /test
parent69733d1f2171978e3d15078d24323af39d54c518 (diff)
downloadsldj-7ecace4284edc98d48e12348372c2c2af4342ad8.tar.gz
sldj-7ecace4284edc98d48e12348372c2c2af4342ad8.tar.bz2
sldj-7ecace4284edc98d48e12348372c2c2af4342ad8.zip
Scripting working very well
Diffstat (limited to 'test')
-rw-r--r--test/scanTest1.c2
1 files changed, 1 insertions, 1 deletions
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};
}